Searched refs:SHA512_CTX (Results 1 – 8 of 8) sorted by relevance
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
D | sha2.h | 99 } SHA512_CTX; 112 } SHA512_CTX; typedef 117 typedef SHA512_CTX SHA384_CTX; 139 void SHA512_Init __P((SHA512_CTX*)); 140 void SHA512_Update __P((SHA512_CTX*, const u_int8_t*, size_t)); 141 void SHA512_Final __P((u_int8_t[SHA512_DIGEST_LENGTH], SHA512_CTX*)); 143 char* SHA512_End __P((SHA512_CTX*, char[SHA512_DIGEST_STRING_LENGTH]));
|
D | sha2.c | 220 void SHA512_Last(SHA512_CTX*); 222 void SHA512_Transform(SHA512_CTX*, const sha2_word64*); 662 void SHA512_Init(SHA512_CTX* context) { in SHA512_Init() 663 if (context == (SHA512_CTX*)0) { in SHA512_Init() 707 void SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) { in SHA512_Transform() 762 void SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) { in SHA512_Transform() 840 void SHA512_Update(SHA512_CTX* context, const sha2_byte *data, size_t len) { in SHA512_Update() 849 assert(context != (SHA512_CTX*)0 && data != (sha2_byte*)0); in SHA512_Update() 888 void SHA512_Last(SHA512_CTX* context) { in SHA512_Last() 929 void SHA512_Final(sha2_byte digest[], SHA512_CTX* context) { in SHA512_Final() [all …]
|
/external/openssl/crypto/sha/ |
D | sha.h | 181 } SHA512_CTX; typedef 185 int SHA384_Init(SHA512_CTX *c); 186 int SHA384_Update(SHA512_CTX *c, const void *data, size_t len); 187 int SHA384_Final(unsigned char *md, SHA512_CTX *c); 189 int SHA512_Init(SHA512_CTX *c); 190 int SHA512_Update(SHA512_CTX *c, const void *data, size_t len); 191 int SHA512_Final(unsigned char *md, SHA512_CTX *c); 193 void SHA512_Transform(SHA512_CTX *c, const unsigned char *data);
|
D | sha512.c | 62 int SHA384_Init (SHA512_CTX *c) in SHA384_Init() 91 int SHA512_Init (SHA512_CTX *c) in SHA512_Init() 123 void sha512_block_data_order (SHA512_CTX *ctx, const void *in, size_t num); 125 int SHA512_Final (unsigned char *md, SHA512_CTX *c) in SHA512_Final() 221 int SHA384_Final (unsigned char *md,SHA512_CTX *c) in SHA384_Final() 224 int SHA512_Update (SHA512_CTX *c, const void *_data, size_t len) in SHA512_Update() 275 int SHA384_Update (SHA512_CTX *c, const void *data, size_t len) in SHA384_Update() 278 void SHA512_Transform (SHA512_CTX *c, const unsigned char *data) in SHA512_Transform() 283 SHA512_CTX c; in SHA384() 296 SHA512_CTX c; in SHA512() [all …]
|
/external/openssl/include/openssl/ |
D | sha.h | 181 } SHA512_CTX; typedef 185 int SHA384_Init(SHA512_CTX *c); 186 int SHA384_Update(SHA512_CTX *c, const void *data, size_t len); 187 int SHA384_Final(unsigned char *md, SHA512_CTX *c); 189 int SHA512_Init(SHA512_CTX *c); 190 int SHA512_Update(SHA512_CTX *c, const void *data, size_t len); 191 int SHA512_Final(unsigned char *md, SHA512_CTX *c); 193 void SHA512_Transform(SHA512_CTX *c, const unsigned char *data);
|
/external/openssl/crypto/evp/ |
D | m_sha1.c | 180 sizeof(EVP_MD *)+sizeof(SHA512_CTX), 199 sizeof(EVP_MD *)+sizeof(SHA512_CTX),
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-04-16-SpillerUnfold.ll | 5 %struct.SHA512_CTX = type { [8 x i64], i64, i64, %struct.anon, i32, i32 } 9 define fastcc void @sha512_block_data_order(%struct.SHA512_CTX* nocapture %ctx, i8* nocapture %in, …
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 2172 SHA512_CTX *c = racoon_malloc(sizeof(*c)); in eay_sha2_512_init() 2184 SHA512_Update((SHA512_CTX *)c, (unsigned char *) data->v, data->l); 2198 SHA512_Final((unsigned char *) res->v, (SHA512_CTX *)c);
|