/freebsd/crypto/openssl/include/openssl/ |
H A D | sha.h | 67 } SHA256_CTX; typedef 69 OSSL_DEPRECATEDIN_3_0 int SHA224_Init(SHA256_CTX *c); 70 OSSL_DEPRECATEDIN_3_0 int SHA224_Update(SHA256_CTX *c, 72 OSSL_DEPRECATEDIN_3_0 int SHA224_Final(unsigned char *md, SHA256_CTX *c); 73 OSSL_DEPRECATEDIN_3_0 int SHA256_Init(SHA256_CTX *c); 74 OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c, 76 OSSL_DEPRECATEDIN_3_0 int SHA256_Final(unsigned char *md, SHA256_CTX *c); 77 OSSL_DEPRECATEDIN_3_0 void SHA256_Transform(SHA256_CTX *c,
|
/freebsd/sys/crypto/openssl/ |
H A D | ossl_sha256.c | 21 void sha256_block_data_order(SHA256_CTX *c, const void *in, size_t num); 28 SHA256_CTX *c = c_; in ossl_sha224_init() 44 SHA256_CTX *c = c_; in ossl_sha256_init() 61 #define HASH_CTX SHA256_CTX 100 .ctxsize = sizeof(SHA256_CTX), 111 .ctxsize = sizeof(SHA256_CTX), 118 _Static_assert(sizeof(SHA256_CTX) <= sizeof(struct ossl_hash_context),
|
H A D | ossl_sha.h | 17 #define SHA256_CTX OSSL_SHA256_CTX macro 44 } SHA256_CTX; typedef
|
/freebsd/sys/crypto/sha2/ |
H A D | sha256.h | 42 } SHA256_CTX; typedef 79 void SHA256_Init(SHA256_CTX *); 80 void SHA256_Update(SHA256_CTX *, const void *, size_t); 82 SHA256_CTX *); 84 char *SHA256_End(SHA256_CTX *, char *);
|
H A D | sha256c.c | 229 SHA256_Pad(SHA256_CTX * ctx) in SHA256_Pad() 258 SHA256_Init(SHA256_CTX * ctx) in SHA256_Init() 277 SHA256_Update(SHA256_CTX * ctx, const void *in, size_t len) in SHA256_Update() 320 SHA256_Final(unsigned char digest[static SHA256_DIGEST_LENGTH], SHA256_CTX *ctx) in SHA256_Final() 362 SHA256_Update((SHA256_CTX *)ctx, in, len); in SHA224_Update() 374 SHA256_Pad((SHA256_CTX *)ctx); in SHA224_Final()
|
/freebsd/libexec/flua/libhash/ |
H A D | lhash.c | 34 SHA256_CTX *ctx; in lua_sha256_update() 52 SHA256_CTX *ctx; in lua_sha256_digest() 69 SHA256_CTX *ctx; in lua_sha256_hexdigest() 96 SHA256_CTX *ctx; in lua_sha256_done() 112 SHA256_CTX *ctx; in lua_sha256()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SHA256_Init.pod | 28 int SHA224_Init(SHA256_CTX *c); 29 int SHA224_Update(SHA256_CTX *c, const void *data, size_t len); 30 int SHA224_Final(unsigned char *md, SHA256_CTX *c); 32 int SHA256_Init(SHA256_CTX *c); 33 int SHA256_Update(SHA256_CTX *c, const void *data, size_t len); 34 int SHA256_Final(unsigned char *md, SHA256_CTX *c); 76 B<SHA256_CTX> object instead of B<SHA_CTX>. SHA384 and SHA512 use B<SHA512_CTX>.
|
/freebsd/crypto/openssl/crypto/sha/ |
H A D | sha256.c | 26 int SHA224_Init(SHA256_CTX *c) in SHA224_Init() 41 int SHA256_Init(SHA256_CTX *c) in SHA256_Init() 56 int SHA224_Update(SHA256_CTX *c, const void *data, size_t len) in SHA224_Update() 61 int SHA224_Final(unsigned char *md, SHA256_CTX *c) in SHA224_Final() 69 #define HASH_CTX SHA256_CTX 108 void sha256_block_data_order(SHA256_CTX *ctx, const void *in, size_t num); 147 static void sha256_block_data_order(SHA256_CTX *ctx, const void *in, in sha256_block_data_order() 225 static void sha256_block_data_order(SHA256_CTX *ctx, const void *in, in sha256_block_data_order()
|
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | sha2_prov.c | 67 IMPLEMENT_digest_functions(sha224, SHA256_CTX, 72 IMPLEMENT_digest_functions(sha256, SHA256_CTX,
|
/freebsd/sys/opencrypto/ |
H A D | xform_sha2.c | 79 .ctxsize = sizeof(SHA256_CTX), 128 .ctxsize = sizeof(SHA256_CTX),
|
H A D | xform_auth.h | 91 SHA256_CTX sha256ctx;
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_digest_private.h | 238 typedef SHA256_CTX archive_sha256_ctx; 240 typedef SHA256_CTX archive_sha256_ctx; 244 typedef SHA256_CTX archive_sha256_ctx;
|
/freebsd/sys/dev/qat/qat_api/qat_utils/src/ |
H A D | QatUtilsCrypto.c | 48 SHA256_CTX ctx; in qatUtilsHashSHA256() 108 SHA256_CTX ctx; in qatUtilsHashSHA256Full()
|
/freebsd/sys/security/mac_veriexec/ |
H A D | mac_veriexec_sha256.c | 38 MAC_VERIEXEC_FPMOD(SHA256, SHA256_DIGEST_LENGTH, sizeof(SHA256_CTX),
|
/freebsd/sys/contrib/openzfs/lib/libzfs/ |
H A D | libzfs.suppr | 6 name = SHA256_CTX
|
/freebsd/crypto/openssl/ssl/ |
H A D | s3_cbc.c | 118 SHA256_CTX *sha256 = ctx; in tls1_sha256_final_raw() 223 if (SHA224_Init((SHA256_CTX *)md_state.c) <= 0) in ssl3_cbc_digest_record() 230 if (SHA256_Init((SHA256_CTX *)md_state.c) <= 0) in ssl3_cbc_digest_record()
|
/freebsd/sys/dev/random/ |
H A D | hash.h | 48 SHA256_CTX sha;
|
/freebsd/crypto/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_cbc_hmac_sha.h | 60 SHA256_CTX head, tail, md;
|
/freebsd/lib/libcrypt/ |
H A D | crypt-sha256.c | 68 SHA256_CTX ctx, alt_ctx; in crypt_sha256() 354 SHA256_CTX ctx; in main()
|
/freebsd/sbin/hastd/ |
H A D | hast_checksum.c | 62 SHA256_CTX ctx; in hast_sha256_checksum()
|
/freebsd/sys/geom/eli/ |
H A D | g_eli_hmac.c | 142 SHA256_CTX ctx; in g_eli_crypto_ivgen()
|
H A D | g_eli.h | 201 SHA256_CTX sc_akeyctx; 203 SHA256_CTX sc_ivctx;
|
/freebsd/contrib/netbsd-tests/lib/libc/hash/ |
H A D | t_sha2.c | 173 SHA256_CTX ctx; in ATF_TC_BODY()
|
/freebsd/sys/libkern/ |
H A D | arc4random.c | 93 SHA256_CTX ctx; in chacha20_randomstir()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | e_aes_cbc_hmac_sha256.c | 33 SHA256_CTX head, tail, md; 61 SHA256_CTX *ctx, const void *in0); 98 static void sha256_update(SHA256_CTX *c, const void *data, size_t len) in sha256_update()
|