Symbol: macalg
crypto/openssh/mac.c
106
mac_setup_by_alg(struct sshmac *mac, const struct macalg *macalg)
crypto/openssh/mac.c
108
mac->type = macalg->type;
crypto/openssh/mac.c
110
if ((mac->hmac_ctx = ssh_hmac_start(macalg->alg)) == NULL)
crypto/openssh/mac.c
112
mac->key_len = mac->mac_len = ssh_hmac_bytes(macalg->alg);
crypto/openssh/mac.c
114
mac->mac_len = macalg->len / 8;
crypto/openssh/mac.c
115
mac->key_len = macalg->key_len / 8;
crypto/openssh/mac.c
118
if (macalg->truncatebits != 0)
crypto/openssh/mac.c
119
mac->mac_len = macalg->truncatebits / 8;
crypto/openssh/mac.c
120
mac->etm = macalg->etm;
crypto/openssh/mac.c
127
const struct macalg *m;
crypto/openssh/mac.c
58
static const struct macalg macs[] = {
crypto/openssh/mac.c
88
const struct macalg *m;
crypto/openssl/apps/pkcs12.c
222
char *passin = NULL, *passout = NULL, *macalg = NULL, *pbmac1_pbkdf2_md = NULL;
crypto/openssl/apps/pkcs12.c
326
macalg = opt_arg();
crypto/openssl/apps/pkcs12.c
482
if (macalg != NULL)
crypto/openssl/apps/pkcs12.c
516
if (macalg == NULL)
crypto/openssl/apps/pkcs12.c
517
macalg = "sha1";
crypto/openssl/apps/pkcs12.c
743
if (macalg != NULL) {
crypto/openssl/apps/pkcs12.c
744
if (!opt_md(macalg, &macmd))
crypto/openssl/crypto/pkcs12/p12_mutl.c
110
const X509_ALGOR *macalg, unsigned char *key)
crypto/openssl/crypto/pkcs12/p12_mutl.c
120
pbkdf2_param = PBMAC1_get1_pbkdf2_param(macalg);
crypto/openssl/crypto/pkcs12/p12_mutl.c
189
const X509_ALGOR *macalg;
crypto/openssl/crypto/pkcs12/p12_mutl.c
208
X509_SIG_get0(p12->mac->dinfo, &macalg, NULL);
crypto/openssl/crypto/pkcs12/p12_mutl.c
209
X509_ALGOR_get0(&macoid, NULL, NULL, macalg);
crypto/openssl/crypto/pkcs12/p12_mutl.c
238
pass, passlen, macalg, key);
crypto/openssl/crypto/pkcs12/p12_mutl.c
315
const X509_ALGOR *macalg;
crypto/openssl/crypto/pkcs12/p12_mutl.c
323
X509_SIG_get0(p12->mac->dinfo, &macalg, NULL);
crypto/openssl/crypto/pkcs12/p12_mutl.c
324
X509_ALGOR_get0(&macoid, NULL, NULL, macalg);
crypto/openssl/crypto/pkcs12/p12_mutl.c
330
param = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(PBMAC1PARAM), macalg->parameter);
crypto/openssl/crypto/pkcs12/p12_mutl.c
404
X509_ALGOR *macalg;
crypto/openssl/crypto/pkcs12/p12_mutl.c
436
X509_SIG_getm(p12->mac->dinfo, &macalg, NULL);
crypto/openssl/crypto/pkcs12/p12_mutl.c
437
if (!X509_ALGOR_set0(macalg, OBJ_nid2obj(nid), V_ASN1_NULL, NULL)) {
crypto/openssl/crypto/pkcs12/p12_mutl.c
465
X509_ALGOR *hmac_alg = NULL, *macalg = NULL;
crypto/openssl/crypto/pkcs12/p12_mutl.c
523
X509_SIG_getm(p12->mac->dinfo, &macalg, &macoct);
crypto/openssl/crypto/pkcs12/p12_mutl.c
524
if (!ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(PBMAC1PARAM), param, &macalg->parameter))
crypto/openssl/crypto/pkcs12/p12_mutl.c
82
PBKDF2PARAM *PBMAC1_get1_pbkdf2_param(const X509_ALGOR *macalg)
crypto/openssl/crypto/pkcs12/p12_mutl.c
88
param = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(PBMAC1PARAM), macalg->parameter);
crypto/openssl/include/openssl/x509.h
1263
PBKDF2PARAM *PBMAC1_get1_pbkdf2_param(const X509_ALGOR *macalg);