drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / crypto / tcrypt.h
CommitLineData
1da177e4
LT
1/*
2 * Quick & dirty crypto testing module.
3 *
4 * This will only exist until we have a better testing mechanism
5 * (e.g. a char device).
6 *
7 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
8 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
e3a4ea4f 9 * Copyright (c) 2007 Nokia Siemens Networks
1da177e4
LT
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
ef2736fc 13 * Software Foundation; either version 2 of the License, or (at your option)
1da177e4
LT
14 * any later version.
15 *
1da177e4
LT
16 */
17#ifndef _CRYPTO_TCRYPT_H
18#define _CRYPTO_TCRYPT_H
19
da7f033d
HX
20struct cipher_speed_template {
21 const char *key;
22 unsigned int klen;
e3a4ea4f
MH
23};
24
e9d41164 25struct hash_speed {
e8057928
ML
26 unsigned int blen; /* buffer length */
27 unsigned int plen; /* per-update length */
18bcc919 28 unsigned int klen; /* key length */
e8057928
ML
29};
30
1da177e4
LT
31/*
32 * DES test vectors.
33 */
da7f033d 34#define DES3_SPEED_VECTORS 1
1da177e4 35
da7f033d 36static struct cipher_speed_template des3_speed_template[] = {
1da177e4 37 {
de224c30 38 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
da7f033d 39 "\x55\x55\x55\x55\x55\x55\x55\x55"
de224c30 40 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
02ab5a70 41 .klen = 24,
e2ee95b8
HSC
42 }
43};
44
ebfd9bcf
HW
45/*
46 * Cipher speed tests
47 */
d5dc3927
SS
48static u8 speed_template_8[] = {8, 0};
49static u8 speed_template_24[] = {24, 0};
a2c58260 50static u8 speed_template_8_16[] = {8, 16, 0};
d5dc3927
SS
51static u8 speed_template_8_32[] = {8, 32, 0};
52static u8 speed_template_16_32[] = {16, 32, 0};
53static u8 speed_template_16_24_32[] = {16, 24, 32, 0};
69d3150c 54static u8 speed_template_20_28_36[] = {20, 28, 36, 0};
d5dc3927 55static u8 speed_template_32_40_48[] = {32, 40, 48, 0};
87aae4bf 56static u8 speed_template_32_48[] = {32, 48, 0};
d5dc3927 57static u8 speed_template_32_48_64[] = {32, 48, 64, 0};
5209c07a 58static u8 speed_template_32_64[] = {32, 64, 0};
f19f5111 59
e8057928
ML
60/*
61 * Digest speed tests
62 */
e9d41164 63static struct hash_speed generic_hash_speed_template[] = {
de224c30 64 { .blen = 16, .plen = 16, },
e8057928
ML
65 { .blen = 64, .plen = 16, },
66 { .blen = 64, .plen = 64, },
67 { .blen = 256, .plen = 16, },
68 { .blen = 256, .plen = 64, },
69 { .blen = 256, .plen = 256, },
70 { .blen = 1024, .plen = 16, },
71 { .blen = 1024, .plen = 256, },
72 { .blen = 1024, .plen = 1024, },
73 { .blen = 2048, .plen = 16, },
74 { .blen = 2048, .plen = 256, },
75 { .blen = 2048, .plen = 1024, },
76 { .blen = 2048, .plen = 2048, },
77 { .blen = 4096, .plen = 16, },
78 { .blen = 4096, .plen = 256, },
79 { .blen = 4096, .plen = 1024, },
80 { .blen = 4096, .plen = 4096, },
81 { .blen = 8192, .plen = 16, },
82 { .blen = 8192, .plen = 256, },
83 { .blen = 8192, .plen = 1024, },
84 { .blen = 8192, .plen = 4096, },
85 { .blen = 8192, .plen = 8192, },
86
87 /* End marker */
88 { .blen = 0, .plen = 0, }
89};
90
18bcc919
HY
91static struct hash_speed hash_speed_template_16[] = {
92 { .blen = 16, .plen = 16, .klen = 16, },
93 { .blen = 64, .plen = 16, .klen = 16, },
94 { .blen = 64, .plen = 64, .klen = 16, },
95 { .blen = 256, .plen = 16, .klen = 16, },
96 { .blen = 256, .plen = 64, .klen = 16, },
97 { .blen = 256, .plen = 256, .klen = 16, },
98 { .blen = 1024, .plen = 16, .klen = 16, },
99 { .blen = 1024, .plen = 256, .klen = 16, },
100 { .blen = 1024, .plen = 1024, .klen = 16, },
101 { .blen = 2048, .plen = 16, .klen = 16, },
102 { .blen = 2048, .plen = 256, .klen = 16, },
103 { .blen = 2048, .plen = 1024, .klen = 16, },
104 { .blen = 2048, .plen = 2048, .klen = 16, },
105 { .blen = 4096, .plen = 16, .klen = 16, },
106 { .blen = 4096, .plen = 256, .klen = 16, },
107 { .blen = 4096, .plen = 1024, .klen = 16, },
108 { .blen = 4096, .plen = 4096, .klen = 16, },
109 { .blen = 8192, .plen = 16, .klen = 16, },
110 { .blen = 8192, .plen = 256, .klen = 16, },
111 { .blen = 8192, .plen = 1024, .klen = 16, },
112 { .blen = 8192, .plen = 4096, .klen = 16, },
113 { .blen = 8192, .plen = 8192, .klen = 16, },
114
115 /* End marker */
116 { .blen = 0, .plen = 0, .klen = 0, }
117};
118
1da177e4 119#endif /* _CRYPTO_TCRYPT_H */