Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/ssl/
H A Dtls_depr.c106 int ssl_hmac_old_new(SSL_HMAC *ret) in ssl_hmac_old_new()
115 void ssl_hmac_old_free(SSL_HMAC *ctx) in ssl_hmac_old_free()
120 int ssl_hmac_old_init(SSL_HMAC *ctx, void *key, size_t len, char *md) in ssl_hmac_old_init()
125 int ssl_hmac_old_update(SSL_HMAC *ctx, const unsigned char *data, size_t len) in ssl_hmac_old_update()
130 int ssl_hmac_old_final(SSL_HMAC *ctx, unsigned char *md, size_t *len) in ssl_hmac_old_final()
143 size_t ssl_hmac_old_size(const SSL_HMAC *ctx) in ssl_hmac_old_size()
148 HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx) in ssl_hmac_get0_HMAC_CTX()
H A Dssl_local.h721 } SSL_HMAC; typedef
723 SSL_HMAC *ssl_hmac_new(const SSL_CTX *ctx);
724 void ssl_hmac_free(SSL_HMAC *ctx);
726 HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx);
728 EVP_MAC_CTX *ssl_hmac_get0_EVP_MAC_CTX(SSL_HMAC *ctx);
729 int ssl_hmac_init(SSL_HMAC *ctx, void *key, size_t len, char *md);
730 int ssl_hmac_update(SSL_HMAC *ctx, const unsigned char *data, size_t len);
731 int ssl_hmac_final(SSL_HMAC *ctx, unsigned char *md, size_t *len,
733 size_t ssl_hmac_size(const SSL_HMAC *ctx);
3031 int ssl_hmac_old_new(SSL_HMAC *ret);
[all …]
H A Dt1_lib.c3064 SSL_HMAC *hctx = NULL; in tls_decrypt_ticket()
4813 SSL_HMAC *ssl_hmac_new(const SSL_CTX *ctx) in ssl_hmac_new()
4815 SSL_HMAC *ret = OPENSSL_zalloc(sizeof(*ret)); in ssl_hmac_new()
4840 void ssl_hmac_free(SSL_HMAC *ctx) in ssl_hmac_free()
4851 EVP_MAC_CTX *ssl_hmac_get0_EVP_MAC_CTX(SSL_HMAC *ctx) in ssl_hmac_get0_EVP_MAC_CTX()
4856 int ssl_hmac_init(SSL_HMAC *ctx, void *key, size_t len, char *md) in ssl_hmac_init()
4873 int ssl_hmac_update(SSL_HMAC *ctx, const unsigned char *data, size_t len) in ssl_hmac_update()
4884 int ssl_hmac_final(SSL_HMAC *ctx, unsigned char *md, size_t *len, in ssl_hmac_final()
4896 size_t ssl_hmac_size(const SSL_HMAC *ctx) in ssl_hmac_size()
/freebsd/crypto/openssl/ssl/statem/
H A Dstatem_srvr.c3949 SSL_HMAC *hctx = NULL; in construct_stateless_ticket()