/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_dh.c | 202 int penclen; in dh_cms_encrypt() local 232 penclen = i2d_ASN1_INTEGER(pubk, &penc); in dh_cms_encrypt() 234 if (penclen <= 0) in dh_cms_encrypt() 236 ASN1_STRING_set0(pubkey, penc, penclen); in dh_cms_encrypt() 311 penclen = i2d_X509_ALGOR(wrap_alg, &penc); in dh_cms_encrypt() 312 if (penclen <= 0) in dh_cms_encrypt() 317 ASN1_STRING_set0(wrap_str, penc, penclen); in dh_cms_encrypt()
|
H A D | cms_ec.c | 261 int penclen; in ecdh_cms_encrypt() local 351 penclen = CMS_SharedInfo_encode(&penc, wrap_alg, ukm, keylen); in ecdh_cms_encrypt() 353 if (penclen <= 0) in ecdh_cms_encrypt() 356 if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, penc, penclen) <= 0) in ecdh_cms_encrypt() 364 penclen = i2d_X509_ALGOR(wrap_alg, &penc); in ecdh_cms_encrypt() 365 if (penclen <= 0) in ecdh_cms_encrypt() 370 ASN1_STRING_set0(wrap_str, penc, penclen); in ecdh_cms_encrypt()
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ec_ameth.c | 74 int penclen; in eckey_pub_encode() local 80 penclen = i2o_ECPublicKey(ec_key, NULL); in eckey_pub_encode() 81 if (penclen <= 0) in eckey_pub_encode() 83 penc = OPENSSL_malloc(penclen); in eckey_pub_encode() 87 penclen = i2o_ECPublicKey(ec_key, &p); in eckey_pub_encode() 88 if (penclen <= 0) in eckey_pub_encode() 91 ptype, pval, penc, penclen)) in eckey_pub_encode()
|
H A D | ecx_meth.c | 105 int penclen; in ecx_priv_encode() local 116 penclen = i2d_ASN1_OCTET_STRING(&oct, &penc); in ecx_priv_encode() 117 if (penclen < 0) { in ecx_priv_encode() 123 V_ASN1_UNDEF, NULL, penc, penclen)) { in ecx_priv_encode() 124 OPENSSL_clear_free(penc, penclen); in ecx_priv_encode()
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | p8_pkey.c | 40 int ptype, void *pval, unsigned char *penc, int penclen) 49 ASN1_STRING_set0(priv->pkey, penc, penclen);
|
/freebsd/crypto/openssl/crypto/dsa/ |
H A D | dsa_ameth.c | 92 int penclen; in dsa_pub_encode() local 123 penclen = i2d_ASN1_INTEGER(pubint, &penc); in dsa_pub_encode() 126 if (penclen <= 0) { in dsa_pub_encode() 135 if (X509_PUBKEY_set0_param(pk, aobj, ptype, str, penc, penclen)) in dsa_pub_encode()
|
/freebsd/crypto/openssl/crypto/dh/ |
H A D | dh_ameth.c | 116 int penclen; in dh_pub_encode() local 138 penclen = i2d_ASN1_INTEGER(pub_key, &penc); in dh_pub_encode() 142 if (penclen <= 0) { in dh_pub_encode() 148 ptype, str, penc, penclen)) in dh_pub_encode()
|
/freebsd/crypto/openssl/crypto/rsa/ |
H A D | rsa_ameth.c | 56 int penclen; in rsa_pub_encode() local 62 penclen = i2d_RSAPublicKey(pkey->pkey.rsa, &penc); in rsa_pub_encode() 63 if (penclen <= 0) { in rsa_pub_encode() 68 strtype, str, penc, penclen)) in rsa_pub_encode()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | X509_PUBKEY_new.pod | 37 unsigned char *penc, int penclen); 91 The encoding of the public key itself is set to the I<penclen>
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | x_pubkey.c | 1006 unsigned char *penc, int penclen) in X509_PUBKEY_set0_param() argument 1013 pub->public_key->length = penclen; in X509_PUBKEY_set0_param()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | x509.h | 1251 unsigned char *penc, int penclen); 1267 unsigned char *penc, int penclen);
|
H A D | x509.h.in | 1057 unsigned char *penc, int penclen); 1073 unsigned char *penc, int penclen);
|