OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SHA224_BLOCK_SIZE
(Results
1 - 4
of
4
) sorted by null
/external/mmc-utils/3rdparty/hmac_sha/
hmac_sha2.h
55
unsigned char block_ipad[
SHA224_BLOCK_SIZE
];
56
unsigned char block_opad[
SHA224_BLOCK_SIZE
];
sha2.h
49
#define
SHA224_BLOCK_SIZE
SHA256_BLOCK_SIZE
hmac_sha2.c
54
if (key_size ==
SHA224_BLOCK_SIZE
) {
56
num =
SHA224_BLOCK_SIZE
;
58
if (key_size >
SHA224_BLOCK_SIZE
){
62
} else { /* key_size >
SHA224_BLOCK_SIZE
*/
66
fill =
SHA224_BLOCK_SIZE
- num;
78
sha224_update(&ctx->ctx_inside, ctx->block_ipad,
SHA224_BLOCK_SIZE
);
82
SHA224_BLOCK_SIZE
);
sha2.c
764
tmp_len =
SHA224_BLOCK_SIZE
- ctx->len;
769
if (ctx->len + len <
SHA224_BLOCK_SIZE
) {
775
block_nb = new_len /
SHA224_BLOCK_SIZE
;
782
rem_len = new_len %
SHA224_BLOCK_SIZE
;
801
block_nb = (1 + ((
SHA224_BLOCK_SIZE
- 9)
802
< (ctx->len %
SHA224_BLOCK_SIZE
)));
[
all
...]
Completed in 1073 milliseconds