Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl/dist/ssl/
H A Dtls_depr.c101 int ssl_hmac_old_new(SSL_HMAC *ret) in ssl_hmac_old_new()
110 void ssl_hmac_old_free(SSL_HMAC *ctx) in ssl_hmac_old_free()
115 int ssl_hmac_old_init(SSL_HMAC *ctx, void *key, size_t len, char *md) in ssl_hmac_old_init()
120 int ssl_hmac_old_update(SSL_HMAC *ctx, const unsigned char *data, size_t len) in ssl_hmac_old_update()
125 int ssl_hmac_old_final(SSL_HMAC *ctx, unsigned char *md, size_t *len) in ssl_hmac_old_final()
138 size_t ssl_hmac_old_size(const SSL_HMAC *ctx) in ssl_hmac_old_size()
143 HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx) in ssl_hmac_get0_HMAC_CTX()
H A Dssl_local.h799 } SSL_HMAC; typedef
801 SSL_HMAC *ssl_hmac_new(const SSL_CTX *ctx);
802 void ssl_hmac_free(SSL_HMAC *ctx);
804 HMAC_CTX *ssl_hmac_get0_HMAC_CTX(SSL_HMAC *ctx);
806 EVP_MAC_CTX *ssl_hmac_get0_EVP_MAC_CTX(SSL_HMAC *ctx);
807 int ssl_hmac_init(SSL_HMAC *ctx, void *key, size_t len, char *md);
808 int ssl_hmac_update(SSL_HMAC *ctx, const unsigned char *data, size_t len);
809 int ssl_hmac_final(SSL_HMAC *ctx, unsigned char *md, size_t *len,
811 size_t ssl_hmac_size(const SSL_HMAC *ctx);
2836 int ssl_hmac_old_new(SSL_HMAC *ret);
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/ssl/statem/
H A Dstatem_srvr.c3671 SSL_HMAC *hctx = NULL; in construct_stateless_ticket()