Home
last modified time | relevance | path

Searched refs:KECCAK1600_CTX (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/openssl/providers/implementations/digests/
H A Dsha3_prov.c58 ossl_sha3_reset((KECCAK1600_CTX *)vctx); in keccak_init()
70 KECCAK1600_CTX *ctx = vctx; in keccak_update()
109 KECCAK1600_CTX *ctx = vctx; in keccak_final()
125 KECCAK1600_CTX *ctx = vctx; in generic_sha3_absorb()
132 return ossl_sha3_final(md, (KECCAK1600_CTX *)vctx); in generic_sha3_final()
152 KECCAK1600_CTX *ctx = vctx; in s390x_sha3_absorb()
161 KECCAK1600_CTX *ctx = vctx; in s390x_sha3_final()
172 KECCAK1600_CTX *ctx = vctx; in s390x_shake_final()
207 KECCAK1600_CTX *ctx = ossl_prov_is_running() ? OPENSSL_zalloc(sizeof(*ctx)) \
221 KECCAK1600_CTX *ctx = ossl_prov_is_running() ? OPENSSL_zalloc(sizeof(*ctx)) \
[all …]
/freebsd/crypto/openssl/include/internal/
H A Dsha3.h23 typedef struct keccak_st KECCAK1600_CTX; typedef
44 void ossl_sha3_reset(KECCAK1600_CTX *ctx);
45 int ossl_sha3_init(KECCAK1600_CTX *ctx, unsigned char pad, size_t bitlen);
46 int ossl_keccak_kmac_init(KECCAK1600_CTX *ctx, unsigned char pad,
48 int ossl_sha3_update(KECCAK1600_CTX *ctx, const void *_inp, size_t len);
49 int ossl_sha3_final(unsigned char *md, KECCAK1600_CTX *ctx);
/freebsd/crypto/openssl/crypto/sha/
H A Dsha3.c15 void ossl_sha3_reset(KECCAK1600_CTX *ctx) in ossl_sha3_reset()
21 int ossl_sha3_init(KECCAK1600_CTX *ctx, unsigned char pad, size_t bitlen) in ossl_sha3_init()
36 int ossl_keccak_kmac_init(KECCAK1600_CTX *ctx, unsigned char pad, size_t bitlen) in ossl_keccak_kmac_init()
45 int ossl_sha3_update(KECCAK1600_CTX *ctx, const void *_inp, size_t len) in ossl_sha3_update()
87 int ossl_sha3_final(unsigned char *md, KECCAK1600_CTX *ctx) in ossl_sha3_final()
/freebsd/crypto/openssl/crypto/evp/
H A Dlegacy_sha.c74 KECCAK1600_CTX *ctx; in shake_ctrl()