/openssl/crypto/http/ |
H A D | http_lib.c | 25 static void init_pstring(char **pstr) in init_pstring() argument 27 if (pstr != NULL) { in init_pstring() 28 *pstr = NULL; in init_pstring() 45 static void free_pstring(char **pstr) in free_pstring() argument 47 if (pstr != NULL) { in free_pstring() 48 OPENSSL_free(*pstr); in free_pstring() 49 *pstr = NULL; in free_pstring()
|
/openssl/crypto/dsa/ |
H A D | dsa_backend.c | 130 const ASN1_STRING *pstr; in ossl_dsa_key_from_pkcs8() local 148 pstr = pval; in ossl_dsa_key_from_pkcs8() 149 pm = pstr->data; in ossl_dsa_key_from_pkcs8() 150 pmlen = pstr->length; in ossl_dsa_key_from_pkcs8()
|
H A D | dsa_ameth.c | 35 const ASN1_STRING *pstr; in dsa_pub_decode() local 46 pstr = pval; in dsa_pub_decode() 47 pm = pstr->data; in dsa_pub_decode() 48 pmlen = pstr->length; in dsa_pub_decode()
|
/openssl/crypto/dh/ |
H A D | dh_backend.c | 188 const ASN1_STRING *pstr; in ossl_dh_key_from_pkcs8() local 204 pstr = pval; in ossl_dh_key_from_pkcs8() 205 pm = pstr->data; in ossl_dh_key_from_pkcs8() 206 pmlen = pstr->length; in ossl_dh_key_from_pkcs8()
|
H A D | dh_ameth.c | 66 const ASN1_STRING *pstr; in dh_pub_decode() local 81 pstr = pval; in dh_pub_decode() 82 pm = pstr->data; in dh_pub_decode() 83 pmlen = pstr->length; in dh_pub_decode()
|
/openssl/crypto/ec/ |
H A D | ec_ameth.c | 52 ASN1_STRING *pstr = NULL; in eckey_param2type() local 53 pstr = ASN1_STRING_new(); in eckey_param2type() 54 if (pstr == NULL) in eckey_param2type() 56 pstr->length = i2d_ECParameters(ec_key, &pstr->data); in eckey_param2type() 57 if (pstr->length <= 0) { in eckey_param2type() 58 ASN1_STRING_free(pstr); in eckey_param2type() 62 *ppval = pstr; in eckey_param2type()
|
H A D | ec_backend.c | 775 const ASN1_STRING *pstr = pval; in ossl_ec_key_param_from_x509_algor() local 776 const unsigned char *pm = pstr->data; in ossl_ec_key_param_from_x509_algor() 777 int pmlen = pstr->length; in ossl_ec_key_param_from_x509_algor()
|
/openssl/providers/implementations/rands/ |
H A D | drbg_hmac.c | 117 const unsigned char *pstr, size_t pstr_len) in ossl_drbg_hmac_init() argument 129 return drbg_hmac_update(hmac, ent, ent_len, nonce, nonce_len, pstr, in ossl_drbg_hmac_init() 135 const unsigned char *pstr, size_t pstr_len) in drbg_hmac_instantiate() argument 138 nonce, nonce_len, pstr, pstr_len); in drbg_hmac_instantiate() 143 const unsigned char *pstr, in drbg_hmac_instantiate_wrapper() argument 157 pstr, pstr_len); in drbg_hmac_instantiate_wrapper()
|
H A D | drbg_hash.c | 253 const unsigned char *pstr, size_t pstr_len) in drbg_hash_instantiate() argument 263 ent, ent_len, nonce, nonce_len, pstr, pstr_len) in drbg_hash_instantiate() 270 const unsigned char *pstr, in drbg_hash_instantiate_wrapper() argument 284 pstr, pstr_len); in drbg_hash_instantiate_wrapper()
|
H A D | seed_src.c | 71 const unsigned char *pstr, size_t pstr_len, in seed_src_instantiate() argument
|
H A D | seed_src_jitter.c | 144 const unsigned char *pstr, in jitter_instantiate() argument
|
H A D | test_rng.c | 83 const unsigned char *pstr, size_t pstr_len, in test_rng_instantiate() argument
|
H A D | drbg_ctr.c | 330 const unsigned char *pstr, in drbg_ctr_instantiate_wrapper() argument 344 pstr, pstr_len); in drbg_ctr_instantiate_wrapper()
|
H A D | fips_crng_test.c | 233 const unsigned char *pstr, in crng_test_instantiate() argument
|
/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2any.c | 444 void **pstr, int *pstrtype) in prepare_dh_params() argument 465 *pstr = params; in prepare_dh_params() 548 void **pstr, int *pstrtype) in encode_dsa_params() argument 566 *pstr = params; in encode_dsa_params() 571 void **pstr, int *pstrtype) in prepare_dsa_params() argument 580 *pstr = NULL; in prepare_dsa_params() 660 *pstr = params; in prepare_ec_explicit_params() 669 void **pstr, int *pstrtype) in prepare_ec_params() argument 693 *pstr = params; in prepare_ec_params() 840 *pstr = NULL; in prepare_rsa_params() [all …]
|
/openssl/crypto/x509/ |
H A D | v3_cpols.c | 93 char *pstr; 120 pstr = cnf->name; 121 if (strcmp(pstr, "ia5org") == 0) { 124 } else if (*pstr == '@') { 127 polsect = X509V3_get_section(ctx, pstr + 1);
|
/openssl/providers/implementations/include/prov/ |
H A D | hmac_drbg.h | 28 const unsigned char *pstr, size_t pstr_len);
|
/openssl/crypto/cms/ |
H A D | cms_ec.c | 28 const ASN1_STRING *pstr = pval; in pkey_type2param() local 29 const unsigned char *pm = pstr->data; in pkey_type2param() 30 size_t pmlen = (size_t)pstr->length; in pkey_type2param()
|
/openssl/crypto/evp/ |
H A D | evp_rand.c | 515 const unsigned char *pstr, size_t pstr_len, const OSSL_PARAM params[]) in evp_rand_instantiate_locked() argument 518 pstr, pstr_len, params); in evp_rand_instantiate_locked() 523 const unsigned char *pstr, size_t pstr_len, in EVP_RAND_instantiate() argument 531 pstr, pstr_len, params); in EVP_RAND_instantiate()
|
/openssl/fuzz/ |
H A D | fuzz_rand.c | 43 ossl_unused const unsigned char *pstr, in fuzz_rand_instantiate() argument
|
/openssl/test/ |
H A D | provfetchtest.c | 101 const unsigned char *pstr, size_t pstr_len, in dummy_rand_instantiate() argument
|
/openssl/test/testutil/ |
H A D | fake_random.c | 52 ossl_unused const unsigned char *pstr, in fake_rand_instantiate() argument
|
/openssl/crypto/rsa/ |
H A D | rsa_ameth.c | 30 ASN1_STRING **pstr, int *pstrtype) in rsa_param_encode() argument 34 *pstr = NULL; in rsa_param_encode() 46 if (ASN1_item_pack(rsa->pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), pstr) == NULL) in rsa_param_encode()
|
/openssl/doc/man3/ |
H A D | EVP_RAND.pod | 56 const unsigned char *pstr, size_t pstr_len, 132 of <strength> and personalisation string I<pstr> of length <pstr_len>.
|
/openssl/doc/man7/ |
H A D | provider-rand.pod | 29 const unsigned char *pstr, size_t pstr_len,
|