OpenBSD manual page server

Manual Page Search Parameters

X509_PUBKEY_NEW(3) Library Functions Manual X509_PUBKEY_NEW(3)

X509_PUBKEY_new, X509_PUBKEY_free, X509_PUBKEY_set, X509_PUBKEY_get, d2i_PUBKEY, i2d_PUBKEY, d2i_PUBKEY_bio, d2i_PUBKEY_fp, i2d_PUBKEY_fp, i2d_PUBKEY_bio, X509_PUBKEY_set0_param, X509_PUBKEY_get0_paramX.509 SubjectPublicKeyInfo structure

#include <openssl/x509.h>

X509_PUBKEY *
X509_PUBKEY_new(void);

void
X509_PUBKEY_free(X509_PUBKEY *a);

int
X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);

EVP_PKEY *
X509_PUBKEY_get(X509_PUBKEY *key);

EVP_PKEY *
d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length);

int
i2d_PUBKEY(EVP_PKEY *a, unsigned char **pp);

EVP_PKEY *
d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);

EVP_PKEY *
d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);

int
i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey);

int
i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey);

int
X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj, int ptype, void *pval, unsigned char *penc, int penclen);

int
X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, const unsigned char **pk, int *ppklen, X509_ALGOR **pa, X509_PUBKEY *pub);

The X509_PUBKEY structure represents the ASN.1 SubjectPublicKeyInfo structure defined in RFC 5280 section 4.1 and used in certificates and certificate requests.

() allocates and initializes an X509_PUBKEY structure.

() frees up the X509_PUBKEY structure a. If a is a NULL pointer, no action occurs.

() sets the public key in *x to the public key contained in the EVP_PKEY structure pkey. If *x is not NULL, any existing public key structure will be freed.

() returns the public key contained in key. The reference count on the returned key is incremented so it must be freed using EVP_PKEY_free(3) after use.

() and () decode and encode an EVP_PKEY structure using SubjectPublicKeyInfo format. For details about the semantics, examples, caveats, and bugs, see ASN1_item_d2i(3). (), (), () and () are similar except they decode or encode using a BIO or FILE pointer.

() sets the public key parameters of pub. The OID associated with the algorithm is set to aobj. The type of the algorithm parameters is set to ptype using the structure pval. The encoding of the public key itself is set to the penclen bytes contained in buffer penc. On success ownership of all the supplied parameters is passed to pub so they must not be freed after the call.

() retrieves the public key parameters from pub, *ppkalg is set to the associated OID and the encoding consists of *ppklen bytes at *pk, and *pa is set to the associated AlgorithmIdentifier for the public key. If the value of any of these parameters is not required, it can be set to NULL. All of the retrieved pointers are internal and must not be freed after the call.

If the allocation fails, X509_PUBKEY_new() returns NULL and sets an error code that can be obtained by ERR_get_error(3). Otherwise it returns a pointer to the newly allocated structure.

X509_PUBKEY_get(), d2i_PUBKEY(), d2i_PUBKEY_bio(), and d2i_PUBKEY_fp() return a pointer to an EVP_PKEY structure or NULL if an error occurs.

i2d_PUBKEY() returns the number of bytes successfully encoded or a negative value if an error occurs.

X509_PUBKEY_set(), X509_PUBKEY_set0_param(), X509_PUBKEY_get0_param(), i2d_PUBKEY_fp(), and i2d_PUBKEY_bio() return 1 for success and 0 if an error occurred.

d2i_X509(3), ERR_get_error(3), X509_ALGOR_new(3), X509_get_pubkey(3)

RFC 5280: Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile

December 28, 2016 OpenBSD-6.1