OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MD4_BLOCK_LENGTH
(Results
1 - 3
of
3
) sorted by null
/external/wpa_supplicant/
md4.c
23
#define
MD4_BLOCK_LENGTH
64
29
u8 buffer[
MD4_BLOCK_LENGTH
]; /* input buffer */
75
MD4Transform(u32 state[4], const u8 block[
MD4_BLOCK_LENGTH
]);
93
static u8 PADDING[
MD4_BLOCK_LENGTH
] = {
121
have = (size_t)((ctx->count >> 3) & (
MD4_BLOCK_LENGTH
- 1));
122
need =
MD4_BLOCK_LENGTH
- have;
136
/* Process data in
MD4_BLOCK_LENGTH
-byte chunks. */
137
while (len >=
MD4_BLOCK_LENGTH
) {
139
input +=
MD4_BLOCK_LENGTH
;
140
len -=
MD4_BLOCK_LENGTH
;
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md4.c
23
#define
MD4_BLOCK_LENGTH
64
29
u8 buffer[
MD4_BLOCK_LENGTH
]; /* input buffer */
75
MD4Transform(u32 state[4], const u8 block[
MD4_BLOCK_LENGTH
]);
93
static u8 PADDING[
MD4_BLOCK_LENGTH
] = {
121
have = (size_t)((ctx->count >> 3) & (
MD4_BLOCK_LENGTH
- 1));
122
need =
MD4_BLOCK_LENGTH
- have;
136
/* Process data in
MD4_BLOCK_LENGTH
-byte chunks. */
137
while (len >=
MD4_BLOCK_LENGTH
) {
139
input +=
MD4_BLOCK_LENGTH
;
140
len -=
MD4_BLOCK_LENGTH
;
[
all
...]
/external/wpa_supplicant_8/src/crypto/
md4-internal.c
20
#define
MD4_BLOCK_LENGTH
64
26
u8 buffer[
MD4_BLOCK_LENGTH
]; /* input buffer */
73
MD4Transform(u32 state[4], const u8 block[
MD4_BLOCK_LENGTH
]);
91
static u8 PADDING[
MD4_BLOCK_LENGTH
] = {
119
have = (size_t)((ctx->count >> 3) & (
MD4_BLOCK_LENGTH
- 1));
120
need =
MD4_BLOCK_LENGTH
- have;
134
/* Process data in
MD4_BLOCK_LENGTH
-byte chunks. */
135
while (len >=
MD4_BLOCK_LENGTH
) {
137
input +=
MD4_BLOCK_LENGTH
;
138
len -=
MD4_BLOCK_LENGTH
;
[
all
...]
Completed in 76 milliseconds