Symbol: SSL_HMAC
crypto/openssl/ssl/ssl_local.h
3028
int ssl_hmac_old_new(SSL_HMAC *ret);
crypto/openssl/ssl/ssl_local.h
3029
void ssl_hmac_old_free(SSL_HMAC *ctx);
crypto/openssl/ssl/ssl_local.h
3030
int ssl_hmac_old_init(SSL_HMAC *ctx, void *key, size_t len, char *md);
crypto/openssl/ssl/ssl_local.h
3031
int ssl_hmac_old_update(SSL_HMAC *ctx, const unsigned char *data, size_t len);
crypto/openssl/ssl/ssl_local.h
3032
int ssl_hmac_old_final(SSL_HMAC *ctx, unsigned char *md, size_t *len);
crypto/openssl/ssl/ssl_local.h
3033
size_t ssl_hmac_old_size(const SSL_HMAC *ctx);
crypto/openssl/ssl/ssl_local.h
721
SSL_HMAC *ssl_hmac_new(const SSL_CTX *ctx);
crypto/openssl/ssl/ssl_local.h
722
void ssl_hmac_free(SSL_HMAC *ctx);
crypto/openssl/ssl/ssl_local.h
724
HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx);
crypto/openssl/ssl/ssl_local.h
726
EVP_MAC_CTX *ssl_hmac_get0_EVP_MAC_CTX(SSL_HMAC *ctx);
crypto/openssl/ssl/ssl_local.h
727
int ssl_hmac_init(SSL_HMAC *ctx, void *key, size_t len, char *md);
crypto/openssl/ssl/ssl_local.h
728
int ssl_hmac_update(SSL_HMAC *ctx, const unsigned char *data, size_t len);
crypto/openssl/ssl/ssl_local.h
729
int ssl_hmac_final(SSL_HMAC *ctx, unsigned char *md, size_t *len,
crypto/openssl/ssl/ssl_local.h
731
size_t ssl_hmac_size(const SSL_HMAC *ctx);
crypto/openssl/ssl/statem/statem_srvr.c
3970
SSL_HMAC *hctx = NULL;
crypto/openssl/ssl/t1_lib.c
3078
SSL_HMAC *hctx = NULL;
crypto/openssl/ssl/t1_lib.c
4822
SSL_HMAC *ssl_hmac_new(const SSL_CTX *ctx)
crypto/openssl/ssl/t1_lib.c
4824
SSL_HMAC *ret = OPENSSL_zalloc(sizeof(*ret));
crypto/openssl/ssl/t1_lib.c
4849
void ssl_hmac_free(SSL_HMAC *ctx)
crypto/openssl/ssl/t1_lib.c
4860
EVP_MAC_CTX *ssl_hmac_get0_EVP_MAC_CTX(SSL_HMAC *ctx)
crypto/openssl/ssl/t1_lib.c
4865
int ssl_hmac_init(SSL_HMAC *ctx, void *key, size_t len, char *md)
crypto/openssl/ssl/t1_lib.c
4882
int ssl_hmac_update(SSL_HMAC *ctx, const unsigned char *data, size_t len)
crypto/openssl/ssl/t1_lib.c
4893
int ssl_hmac_final(SSL_HMAC *ctx, unsigned char *md, size_t *len,
crypto/openssl/ssl/t1_lib.c
4905
size_t ssl_hmac_size(const SSL_HMAC *ctx)
crypto/openssl/ssl/tls_depr.c
106
int ssl_hmac_old_new(SSL_HMAC *ret)
crypto/openssl/ssl/tls_depr.c
115
void ssl_hmac_old_free(SSL_HMAC *ctx)
crypto/openssl/ssl/tls_depr.c
120
int ssl_hmac_old_init(SSL_HMAC *ctx, void *key, size_t len, char *md)
crypto/openssl/ssl/tls_depr.c
125
int ssl_hmac_old_update(SSL_HMAC *ctx, const unsigned char *data, size_t len)
crypto/openssl/ssl/tls_depr.c
130
int ssl_hmac_old_final(SSL_HMAC *ctx, unsigned char *md, size_t *len)
crypto/openssl/ssl/tls_depr.c
143
size_t ssl_hmac_old_size(const SSL_HMAC *ctx)
crypto/openssl/ssl/tls_depr.c
148
HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx)