| /dflybsd-src/crypto/libressl/crypto/pem/ |
| H A D | pem_pkey.c | 79 int pem_check_suffix(const char *pem_str, const char *suffix); 168 char pem_str[80]; in PEM_write_bio_PrivateKey_traditional() local 170 (void) snprintf(pem_str, sizeof(pem_str), "%s PRIVATE KEY", in PEM_write_bio_PrivateKey_traditional() 171 x->ameth->pem_str); in PEM_write_bio_PrivateKey_traditional() 173 pem_str, bp, x, enc, kstr, klen, cb, u); in PEM_write_bio_PrivateKey_traditional() 219 char pem_str[80]; in PEM_write_bio_Parameters() local 224 (void) snprintf(pem_str, sizeof(pem_str), "%s PARAMETERS", in PEM_write_bio_Parameters() 225 x->ameth->pem_str); in PEM_write_bio_Parameters() 227 pem_str, bp, x, NULL, NULL, 0, 0, NULL); in PEM_write_bio_Parameters()
|
| H A D | pem_lib.c | 88 int pem_check_suffix(const char *pem_str, const char *suffix); 845 pem_check_suffix(const char *pem_str, const char *suffix) in pem_check_suffix() argument 847 int pem_len = strlen(pem_str); in pem_check_suffix() 853 p = pem_str + pem_len - suffix_len; in pem_check_suffix() 859 return p - pem_str; in pem_check_suffix()
|
| /dflybsd-src/crypto/libressl/crypto/asn1/ |
| H A D | ameth_lib.c | 249 if (((int)strlen(ameth->pem_str) == len) && in EVP_PKEY_asn1_find_str() 250 !strncasecmp(ameth->pem_str, str, len)) in EVP_PKEY_asn1_find_str() 302 *ppem_str = ameth->pem_str; in EVP_PKEY_asn1_get0_info() 313 EVP_PKEY_asn1_new(int id, int flags, const char *pem_str, const char *info) in EVP_PKEY_asn1_new() argument 329 if (pem_str != NULL) { in EVP_PKEY_asn1_new() 330 if ((ameth->pem_str = strdup(pem_str)) == NULL) in EVP_PKEY_asn1_new() 349 preserve.pem_str = dst->pem_str; in EVP_PKEY_asn1_copy() 357 dst->pem_str = preserve.pem_str; in EVP_PKEY_asn1_copy() 365 free(ameth->pem_str); in EVP_PKEY_asn1_free()
|
| H A D | asn1_locl.h | 99 char *pem_str; member
|
| /dflybsd-src/crypto/libressl/crypto/engine/ |
| H A D | tb_asnmth.c | 201 if (((int)strlen(ameth->pem_str) == len) && in ENGINE_get_pkey_asn1_meth_str() 202 !strncasecmp(ameth->pem_str, str, len)) in ENGINE_get_pkey_asn1_meth_str() 227 if (((int)strlen(ameth->pem_str) == lk->len) && in look_str_cb() 228 !strncasecmp(ameth->pem_str, lk->str, lk->len)) { in look_str_cb()
|
| /dflybsd-src/crypto/libressl/apps/openssl/ |
| H A D | openssl.c | 697 const char *pinfo, *pem_str; in list_pkey() local 700 &pinfo, &pem_str, ameth); in list_pkey() 712 if (pem_str == NULL) in list_pkey() 713 pem_str = "(none)"; in list_pkey() 714 BIO_printf(out, "\tPEM string: %s\n", pem_str); in list_pkey()
|
| /dflybsd-src/crypto/libressl/crypto/cmac/ |
| H A D | cm_ameth.c | 85 .pem_str = "CMAC",
|
| /dflybsd-src/crypto/libressl/crypto/gost/ |
| H A D | gost89imit_ameth.c | 82 .pem_str = "GOST-MAC",
|
| H A D | gostr341001_ameth.c | 685 .pem_str = "GOST2001",
|
| /dflybsd-src/crypto/libressl/crypto/hmac/ |
| H A D | hm_ameth.c | 161 .pem_str = "HMAC",
|
| /dflybsd-src/crypto/libressl/crypto/rsa/ |
| H A D | rsa_ameth.c | 1098 .pem_str = "RSA", 1140 .pem_str = "RSA-PSS",
|
| /dflybsd-src/crypto/libressl/crypto/dh/ |
| H A D | dh_ameth.c | 507 .pem_str = "DH",
|
| /dflybsd-src/crypto/libressl/crypto/dsa/ |
| H A D | dsa_ameth.c | 711 .pem_str = "DSA",
|
| /dflybsd-src/crypto/libressl/crypto/ec/ |
| H A D | ec_ameth.c | 1014 .pem_str = "EC",
|
| /dflybsd-src/crypto/libressl/include/openssl/ |
| H A D | evp.h | 923 EVP_PKEY_ASN1_METHOD* EVP_PKEY_asn1_new(int id, int flags, const char *pem_str,
|