Symbol: SHA512_CTX
crypto/krb5/src/lib/crypto/builtin/sha2/sha2.h
74
void k5_sha512_init(SHA512_CTX *);
crypto/krb5/src/lib/crypto/builtin/sha2/sha2.h
75
void k5_sha512_update(SHA512_CTX *, const void *, size_t);
crypto/krb5/src/lib/crypto/builtin/sha2/sha2.h
76
void k5_sha512_final(void *, SHA512_CTX *);
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
115
k5_sha512_init (SHA512_CTX *m)
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
130
calc (SHA512_CTX *m, uint64_t *in)
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
201
k5_sha512_update (SHA512_CTX *m, const void *v, size_t len)
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
236
k5_sha512_final (void *res, SHA512_CTX *m)
crypto/openssl/crypto/sha/sha512.c
110
int SHA384_Init(SHA512_CTX *c)
crypto/openssl/crypto/sha/sha512.c
128
int SHA512_Init(SHA512_CTX *c)
crypto/openssl/crypto/sha/sha512.c
150
void sha512_block_data_order_c(SHA512_CTX *ctx, const void *in, size_t num);
crypto/openssl/crypto/sha/sha512.c
153
void sha512_block_data_order(SHA512_CTX *ctx, const void *in, size_t num);
crypto/openssl/crypto/sha/sha512.c
155
int SHA512_Final(unsigned char *md, SHA512_CTX *c)
crypto/openssl/crypto/sha/sha512.c
274
int SHA384_Final(unsigned char *md, SHA512_CTX *c)
crypto/openssl/crypto/sha/sha512.c
279
int SHA512_Update(SHA512_CTX *c, const void *_data, size_t len)
crypto/openssl/crypto/sha/sha512.c
327
int SHA384_Update(SHA512_CTX *c, const void *data, size_t len)
crypto/openssl/crypto/sha/sha512.c
332
void SHA512_Transform(SHA512_CTX *c, const unsigned char *data)
crypto/openssl/crypto/sha/sha512.c
583
static void sha512_block_data_order(SHA512_CTX *ctx, const void *in,
crypto/openssl/crypto/sha/sha512.c
645
static void sha512_block_data_order(SHA512_CTX *ctx, const void *in,
crypto/openssl/crypto/sha/sha512.c
734
void sha512_block_data_order_c(SHA512_CTX *ctx, const void *in, size_t num)
crypto/openssl/crypto/sha/sha512.c
736
static void sha512_block_data_order(SHA512_CTX *ctx, const void *in,
crypto/openssl/crypto/sha/sha512.c
74
int sha512_224_init(SHA512_CTX *c)
crypto/openssl/crypto/sha/sha512.c
92
int sha512_256_init(SHA512_CTX *c)
crypto/openssl/crypto/sha/sha_riscv.c
33
void sha512_block_data_order(SHA512_CTX *ctx, const void *in, size_t num);
crypto/openssl/crypto/sha/sha_riscv.c
35
void sha512_block_data_order(SHA512_CTX *ctx, const void *in, size_t num)
crypto/openssl/engines/e_ossltest.c
171
sizeof(EVP_MD *) + sizeof(SHA512_CTX))
crypto/openssl/engines/e_ossltest.c
193
sizeof(EVP_MD *) + sizeof(SHA512_CTX))
crypto/openssl/include/crypto/sha.h
18
int sha512_224_init(SHA512_CTX *);
crypto/openssl/include/crypto/sha.h
19
int sha512_256_init(SHA512_CTX *);
crypto/openssl/include/openssl/sha.h
120
OSSL_DEPRECATEDIN_3_0 int SHA384_Init(SHA512_CTX *c);
crypto/openssl/include/openssl/sha.h
121
OSSL_DEPRECATEDIN_3_0 int SHA384_Update(SHA512_CTX *c,
crypto/openssl/include/openssl/sha.h
123
OSSL_DEPRECATEDIN_3_0 int SHA384_Final(unsigned char *md, SHA512_CTX *c);
crypto/openssl/include/openssl/sha.h
124
OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
crypto/openssl/include/openssl/sha.h
125
OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
crypto/openssl/include/openssl/sha.h
127
OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
crypto/openssl/include/openssl/sha.h
128
OSSL_DEPRECATEDIN_3_0 void SHA512_Transform(SHA512_CTX *c,
crypto/openssl/providers/implementations/digests/sha2_prov.c
81
IMPLEMENT_digest_functions(sha384, SHA512_CTX,
crypto/openssl/providers/implementations/digests/sha2_prov.c
86
IMPLEMENT_digest_functions(sha512, SHA512_CTX,
crypto/openssl/providers/implementations/digests/sha2_prov.c
91
IMPLEMENT_digest_functions(sha512_224, SHA512_CTX,
crypto/openssl/providers/implementations/digests/sha2_prov.c
96
IMPLEMENT_digest_functions(sha512_256, SHA512_CTX,
crypto/openssl/ssl/record/methods/ssl3_cbc.c
105
#define LARGEST_DIGEST_CTX SHA512_CTX
crypto/openssl/ssl/record/methods/ssl3_cbc.c
201
if (SHA384_Init((SHA512_CTX *)md_state.c) <= 0)
crypto/openssl/ssl/record/methods/ssl3_cbc.c
209
if (SHA512_Init((SHA512_CTX *)md_state.c) <= 0)
crypto/openssl/ssl/record/methods/ssl3_cbc.c
97
SHA512_CTX *sha512 = ctx;
lib/libcrypt/crypt-sha512.c
387
SHA512_CTX ctx;
lib/libcrypt/crypt-sha512.c
68
SHA512_CTX ctx, alt_ctx;
lib/libunbound/config.h
1571
void SHA512_Init(SHA512_CTX*);
lib/libunbound/config.h
1572
void SHA512_Update(SHA512_CTX*, void*, size_t);
lib/libunbound/config.h
1573
void SHA512_Final(uint8_t[SHA512_DIGEST_LENGTH], SHA512_CTX*);
sbin/md5/md5.c
117
SHA512_CTX sha512;
sys/crypto/openssl/ossl_sha512.c
186
SHA512_CTX *c = c_;
sys/crypto/openssl/ossl_sha512.c
21
void sha512_block_data_order(SHA512_CTX *c, const void *in, size_t num);
sys/crypto/openssl/ossl_sha512.c
237
.ctxsize = sizeof(SHA512_CTX),
sys/crypto/openssl/ossl_sha512.c
248
.ctxsize = sizeof(SHA512_CTX),
sys/crypto/openssl/ossl_sha512.c
255
_Static_assert(sizeof(SHA512_CTX) <= sizeof(struct ossl_hash_context),
sys/crypto/openssl/ossl_sha512.c
32
SHA512_CTX *c = c_;
sys/crypto/openssl/ossl_sha512.c
51
SHA512_CTX *c = c_;
sys/crypto/openssl/ossl_sha512.c
70
SHA512_CTX *c = c_;
sys/crypto/sha2/sha512.h
78
void SHA512_Init(SHA512_CTX *);
sys/crypto/sha2/sha512.h
79
void SHA512_Update(SHA512_CTX *, const void *, size_t);
sys/crypto/sha2/sha512.h
81
SHA512_CTX *);
sys/crypto/sha2/sha512.h
83
char *SHA512_End(SHA512_CTX *, char *);
sys/crypto/sha2/sha512c.c
259
SHA512_Pad(SHA512_CTX * ctx)
sys/crypto/sha2/sha512c.c
288
SHA512_Init(SHA512_CTX * ctx)
sys/crypto/sha2/sha512c.c
307
SHA512_Update(SHA512_CTX * ctx, const void *in, size_t len)
sys/crypto/sha2/sha512c.c
353
SHA512_Final(unsigned char digest[static SHA512_DIGEST_LENGTH], SHA512_CTX *ctx)
sys/crypto/sha2/sha512c.c
371
SHA512_224_Init(SHA512_CTX * ctx)
sys/crypto/sha2/sha512c.c
389
SHA512_224_Update(SHA512_CTX * ctx, const void *in, size_t len)
sys/crypto/sha2/sha512c.c
396
SHA512_224_Final(unsigned char digest[static SHA512_224_DIGEST_LENGTH], SHA512_CTX * ctx)
sys/crypto/sha2/sha512c.c
410
SHA512_256_Init(SHA512_CTX * ctx)
sys/crypto/sha2/sha512c.c
428
SHA512_256_Update(SHA512_CTX * ctx, const void *in, size_t len)
sys/crypto/sha2/sha512c.c
435
SHA512_256_Final(unsigned char digest[static SHA512_256_DIGEST_LENGTH], SHA512_CTX * ctx)
sys/crypto/sha2/sha512c.c
477
SHA512_Update((SHA512_CTX *)ctx, in, len);
sys/crypto/sha2/sha512c.c
489
SHA512_Pad((SHA512_CTX *)ctx);
sys/crypto/sha2/sha512t.h
106
void SHA512_224_Init(SHA512_CTX *);
sys/crypto/sha2/sha512t.h
107
void SHA512_224_Update(SHA512_CTX *, const void *, size_t);
sys/crypto/sha2/sha512t.h
109
SHA512_CTX *);
sys/crypto/sha2/sha512t.h
111
char *SHA512_224_End(SHA512_CTX *, char *);
sys/crypto/sha2/sha512t.h
118
void SHA512_256_Init(SHA512_CTX *);
sys/crypto/sha2/sha512t.h
119
void SHA512_256_Update(SHA512_CTX *, const void *, size_t);
sys/crypto/sha2/sha512t.h
121
SHA512_CTX *);
sys/crypto/sha2/sha512t.h
123
char *SHA512_256_End(SHA512_CTX *, char *);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
132
SHA512_CTX ctx;
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
72
SHA512_CTX ctx;
sys/dev/qat_c2xxx/qat.c
194
.qshai_state_offset = offsetof(SHA512_CTX, state),
sys/geom/eli/g_eli.h
730
SHA512_CTX innerctx;
sys/geom/eli/g_eli.h
731
SHA512_CTX outerctx;
sys/geom/eli/g_eli_hmac.c
50
SHA512_CTX lctx;
sys/netpfil/pf/pf.c
184
VNET_DEFINE(SHA512_CTX, pf_tcp_secret_ctx);
sys/netpfil/pf/pf.c
5568
SHA512_CTX ctx;
sys/opencrypto/xform_auth.h
93
SHA512_CTX sha512ctx;
sys/opencrypto/xform_sha2.c
103
.ctxsize = sizeof(SHA512_CTX),
sys/opencrypto/xform_sha2.c
152
.ctxsize = sizeof(SHA512_CTX),
sys/security/mac_veriexec/mac_veriexec_sha512.c
38
MAC_VERIEXEC_FPMOD(SHA512, SHA512_DIGEST_LENGTH, sizeof(SHA512_CTX),
usr.bin/xinstall/xinstall.c
112
SHA512_CTX SHA512;