Searched refs:mtype (Results 1 – 11 of 11) sorted by relevance
/openssl/doc/man3/ |
H A D | SSL_CTX_dane_enable.pod | 18 uint8_t mtype, uint8_t ord); 21 uint8_t mtype, const unsigned char *data, size_t dlen); 24 uint8_t *mtype, const unsigned char **data, 49 The B<mtype> argument specifies a DANE TLSA matching type and the B<md> 126 B<selector>, B<mtype> and B<data> parameters is updated to the corresponding 201 uint8_t usage, selector, mtype; 228 /* set usage, selector, mtype, data, len */ 245 ret = SSL_dane_tlsa_add(ssl, usage, selector, mtype, data, len); 308 (void) SSL_get0_dane_tlsa(ssl, &usage, &selector, &mtype, NULL, NULL); 309 printf("DANE TLSA %d %d %d ", usage, selector, mtype);
|
/openssl/test/ |
H A D | danetest.c | 247 static uint8_t mtype; in tlsa_import_rr() local 252 { &mtype, "mtype", checked_uint8 }, in tlsa_import_rr() 268 ret = SSL_dane_tlsa_add(ssl, usage, selector, mtype, data, len); in tlsa_import_rr()
|
H A D | dane-cross.in | 16 # <usage> <selector> <mtype> <hex-data>
|
H A D | danetest.in | 16 # <usage> <selector> <mtype> <hex-data>
|
/openssl/crypto/x509/ |
H A D | x509_vfy.c | 2852 unsigned mtype = DANETLS_NONE; in dane_match_cert() local 2915 mtype = DANETLS_NONE; in dane_match_cert() 2916 ordinal = dane->dctx->mdord[t->mtype]; in dane_match_cert() 2928 mtype = DANETLS_NONE; in dane_match_cert() 2929 ordinal = dane->dctx->mdord[t->mtype]; in dane_match_cert() 2948 if (t->mtype != mtype) { in dane_match_cert() 2949 const EVP_MD *md = dane->dctx->mdevp[mtype = t->mtype]; in dane_match_cert() 3027 t->mtype != DANETLS_MATCHING_FULL || in check_dane_pkeys() 3059 int mtype = DANETLS_MATCHING_FULL; in dane_match_rpk() local 3082 if (t->mtype != mtype) { in dane_match_rpk() [all …]
|
/openssl/include/internal/ |
H A D | dane.h | 46 uint8_t mtype; member
|
/openssl/ssl/ |
H A D | ssl_lib.c | 95 uint8_t mtype; member 224 if (mtype > dctx->mdmax) { in dane_mtype_set() 227 int n = ((int)mtype) + 1; in dane_mtype_set() 245 dctx->mdmax = mtype; in dane_mtype_set() 248 dctx->mdevp[mtype] = md; in dane_mtype_set() 257 if (mtype > dane->dctx->mdmax) in tlsa_md_get() 259 return dane->dctx->mdevp[mtype]; in tlsa_md_get() 319 t->mtype = mtype; in dane_tlsa_add() 432 if (dane->dctx->mdord[rec->mtype] > dane->dctx->mdord[mtype]) in dane_tlsa_add() 1305 if (mtype) in SSL_get0_dane_tlsa() [all …]
|
/openssl/apps/lib/ |
H A D | s_cb.c | 1268 uint8_t usage, selector, mtype; in print_verify_detail() local 1273 mdpth = SSL_get0_dane_tlsa(s, &usage, &selector, &mtype, &data, &dlen); in print_verify_detail() 1288 usage, selector, mtype, in print_verify_detail()
|
/openssl/apps/ |
H A D | s_client.c | 421 static uint8_t mtype; in tlsa_import_rr() local 426 { &mtype, "mtype", checked_uint8 }, in tlsa_import_rr() 444 ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len); in tlsa_import_rr()
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 1831 uint8_t mtype, uint8_t ord); 1834 uint8_t mtype, const unsigned char *data, size_t dlen); 1837 uint8_t *mtype, const unsigned char **data,
|
/openssl/crypto/err/ |
H A D | openssl.txt | 1396 SSL_R_DANE_CANNOT_OVERRIDE_MTYPE_FULL:173:dane cannot override mtype full
|
Completed in 92 milliseconds