Lines Matching refs:nm
77 char *nm=NULL; in PEM_read_bio_PrivateKey() local
84 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_EVP_PKEY, bp, cb, u)) in PEM_read_bio_PrivateKey()
88 if (strcmp(nm,PEM_STRING_PKCS8INF) == 0) { in PEM_read_bio_PrivateKey()
98 } else if (strcmp(nm,PEM_STRING_PKCS8) == 0) { in PEM_read_bio_PrivateKey()
122 } else if ((slen = pem_check_suffix(nm, "PRIVATE KEY")) > 0) in PEM_read_bio_PrivateKey()
125 ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen); in PEM_read_bio_PrivateKey()
134 OPENSSL_free(nm); in PEM_read_bio_PrivateKey()
157 char *nm=NULL; in PEM_read_bio_Parameters() local
164 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_PARAMETERS, in PEM_read_bio_Parameters()
169 if ((slen = pem_check_suffix(nm, "PARAMETERS")) > 0) in PEM_read_bio_Parameters()
174 if (!EVP_PKEY_set_type_str(ret, nm, slen) in PEM_read_bio_Parameters()
191 OPENSSL_free(nm); in PEM_read_bio_Parameters()