=pod =begin comment Any deprecated keypair/params d2i or i2d functions are collected on this page. =end comment =head1 NAME d2i_DSAPrivateKey, d2i_DSAPrivateKey_bio, d2i_DSAPrivateKey_fp, d2i_DSAPublicKey, d2i_DSA_PUBKEY, d2i_DSA_PUBKEY_bio, d2i_DSA_PUBKEY_fp, d2i_DSAparams, d2i_RSAPrivateKey, d2i_RSAPrivateKey_bio, d2i_RSAPrivateKey_fp, d2i_RSAPublicKey, d2i_RSAPublicKey_bio, d2i_RSAPublicKey_fp, d2i_RSA_PUBKEY, d2i_RSA_PUBKEY_bio, d2i_RSA_PUBKEY_fp, d2i_DHparams, d2i_DHparams_bio, d2i_DHparams_fp, i2d_RSAPrivateKey, i2d_RSAPrivateKey_bio, i2d_RSAPrivateKey_fp, i2d_RSAPublicKey, i2d_RSAPublicKey_bio, i2d_RSAPublicKey_fp, i2d_RSA_PUBKEY, i2d_RSA_PUBKEY_bio, i2d_RSA_PUBKEY_fp, i2d_DHparams, i2d_DHparams_bio, i2d_DHparams_fp - DEPRECATED =head1 SYNOPSIS =for openssl generic Deprecated since OpenSSL 3.0, can be hidden entirely by defining B with a suitable version value, see L: TYPE *d2i_TYPEPrivateKey(TYPE **a, const unsigned char **ppin, long length); TYPE *d2i_TYPEPrivateKey_bio(BIO *bp, TYPE **a); TYPE *d2i_TYPEPrivateKey_fp(FILE *fp, TYPE **a); TYPE *d2i_TYPEPublicKey(TYPE **a, const unsigned char **ppin, long length); TYPE *d2i_TYPEPublicKey_bio(BIO *bp, TYPE **a); TYPE *d2i_TYPEPublicKey_fp(FILE *fp, TYPE **a); TYPE *d2i_TYPEparams(TYPE **a, const unsigned char **ppin, long length); TYPE *d2i_TYPEparams_bio(BIO *bp, TYPE **a); TYPE *d2i_TYPEparams_fp(FILE *fp, TYPE **a); TYPE *d2i_TYPE_PUBKEY(TYPE **a, const unsigned char **ppin, long length); TYPE *d2i_TYPE_PUBKEY_bio(BIO *bp, TYPE **a); TYPE *d2i_TYPE_PUBKEY_fp(FILE *fp, TYPE **a); int i2d_TYPEPrivateKey(const TYPE *a, unsigned char **ppout); int i2d_TYPEPrivateKey(TYPE *a, unsigned char **ppout); int i2d_TYPEPrivateKey_fp(FILE *fp, const TYPE *a); int i2d_TYPEPrivateKey_fp(FILE *fp, TYPE *a); int i2d_TYPEPrivateKey_bio(BIO *bp, const TYPE *a); int i2d_TYPEPrivateKey_bio(BIO *bp, TYPE *a); int i2d_TYPEPublicKey(const TYPE *a, unsigned char **ppout); int i2d_TYPEPublicKey(TYPE *a, unsigned char **ppout); int i2d_TYPEPublicKey_fp(FILE *fp, const TYPE *a); int i2d_TYPEPublicKey_fp(FILE *fp, TYPE *a); int i2d_TYPEPublicKey_bio(BIO *bp, const TYPE *a); int i2d_TYPEPublicKey_bio(BIO *bp, TYPE *a); int i2d_TYPEparams(const TYPE *a, unsigned char **ppout); int i2d_TYPEparams(TYPE *a, unsigned char **ppout); int i2d_TYPEparams_fp(FILE *fp, const TYPE *a); int i2d_TYPEparams_fp(FILE *fp, TYPE *a); int i2d_TYPEparams_bio(BIO *bp, const TYPE *a); int i2d_TYPEparams_bio(BIO *bp, TYPE *a); int i2d_TYPE_PUBKEY(const TYPE *a, unsigned char **ppout); int i2d_TYPE_PUBKEY(TYPE *a, unsigned char **ppout); int i2d_TYPE_PUBKEY_fp(FILE *fp, const TYPE *a); int i2d_TYPE_PUBKEY_fp(FILE *fp, TYPE *a); int i2d_TYPE_PUBKEY_bio(BIO *bp, const TYPE *a); int i2d_TYPE_PUBKEY_bio(BIO *bp, TYPE *a); =head1 DESCRIPTION All functions described here are deprecated. Please use L instead of the B functions and L instead of the B functions. See L below. In the description here, B> is used a placeholder for any of the OpenSSL datatypes, such as B. The function parameters I and I are generally either both named I in the headers, or I and I. All the functions here behave the way that's described in L. Please note that not all functions in the synopsis are available for all key types. For example, there are no d2i_RSAparams() or i2d_RSAparams(), because the PKCS#1 B structure doesn't include any key parameters. BPrivateKey>() and derivates thereof decode DER encoded B> private key data organized in a type specific structure. BPublicKey>() and derivates thereof decode DER encoded B> public key data organized in a type specific structure. Bparams>() and derivates thereof decode DER encoded B> key parameters organized in a type specific structure. B_PUBKEY>() and derivates thereof decode DER encoded B> public key data organized in a B structure. BPrivateKey>() and derivates thereof encode the private key B> data into a type specific DER encoded structure. BPublicKey>() and derivates thereof encode the public key B> data into a type specific DER encoded structure. Bparams>() and derivates thereof encode the B> key parameters data into a type specific DER encoded structure. B_PUBKEY>() and derivates thereof encode the public key B> data into a DER encoded B structure. For example, d2i_RSAPrivateKey() and d2i_RSAPublicKey() expects the structure defined by PKCS#1. Similarly, i2d_RSAPrivateKey() and i2d_RSAPublicKey() produce DER encoded string organized according to PKCS#1. =head2 Migration Migration from the diverse B>s requires using corresponding new OpenSSL types. For all B>s described here, the corresponding new type is B. The rest of this section assumes that this has been done, exactly how to do that is described elsewhere. There are two migration paths: =over 4 =item * Replace bPrivateKey()> with L, bPublicKey()> with L, bparams()> with L, b_PUBKEY()> with L, bPrivateKey()> with L, bPublicKey()> with L, bparams()> with L, b_PUBKEY()> with L. A caveat is that L may output a DER encoded PKCS#8 outermost structure instead of the type specific structure, and that L recognises and unpacks a PKCS#8 structures. =item * Use L and L. How to migrate is described below. All those descriptions assume that the key to be encoded is in the variable I. =back =head3 Migrating B functions to B The exact L output is driven by arguments rather than by function names. The sample code to get DER encoded output in a type specific structure is uniform, the only things that vary are the selection of what part of the B should be output, and the structure. The B functions names can therefore be translated into two variables, I and I as follows: =over 4 =item BPrivateKey>() translates into: int selection = EVP_PKEY_PRIVATE_KEY; const char *structure = "type-specific"; =item BPublicKey>() translates into: int selection = EVP_PKEY_PUBLIC_KEY; const char *structure = "type-specific"; =item Bparams>() translates into: int selection = EVP_PKEY_PARAMETERS; const char *structure = "type-specific"; =item B_PUBKEY>() translates into: int selection = EVP_PKEY_PUBLIC_KEY; const char *structure = "SubjectPublicKeyInfo"; =back The following sample code does the rest of the work: unsigned char *p = buffer; /* |buffer| is supplied by the caller */ size_t len = buffer_size; /* assumed be the size of |buffer| */ OSSL_ENCODER_CTX *ctx = OSSL_ENCODER_CTX_new_by_EVP_PKEY(pkey, selection, "DER", structure, NULL, NULL); if (ctx == NULL) { /* fatal error handling */ } if (OSSL_ENCODER_CTX_get_num_encoders(ctx) == 0) { OSSL_ENCODER_CTX_free(ctx); /* non-fatal error handling */ } if (!OSSL_ENCODER_to_data(ctx, &p, &len)) { OSSL_ENCODER_CTX_free(ctx); /* error handling */ } OSSL_ENCODER_CTX_free(ctx); =for comment TODO: a similar section on OSSL_DECODER is to be added =head1 NOTES The letters B and B in B>() stand for "internal" (that is, an internal C structure) and "DER" respectively. So B>() converts from internal to DER. The functions can also understand B forms. The actual TYPE structure passed to B>() must be a valid populated B> structure -- it B simply be fed with an empty structure such as that returned by TYPE_new(). The encoded data is in binary form and may contain embedded zeros. Therefore, any FILE pointers or BIOs should be opened in binary mode. Functions such as strlen() will B return the correct length of the encoded structure. The ways that I<*ppin> and I<*ppout> are incremented after the operation can trap the unwary. See the B section for some common errors. The reason for this-auto increment behaviour is to reflect a typical usage of ASN1 functions: after one structure is encoded or decoded another will be processed after it. The following points about the data types might be useful: =over 4 =item B Represents a DSA public key using a B structure. =item B, B Use a non-standard OpenSSL format and should be avoided; use B, L, or similar instead. =back =head1 RETURN VALUES B>(), B_bio>() and B_fp>() return a valid B> structure or NULL if an error occurs. If the "reuse" capability has been used with a valid structure being passed in via I, then the object is freed in the event of error and I<*a> is set to NULL. B>() returns the number of bytes successfully encoded or a negative value if an error occurs. B_bio>() and B_fp>() return 1 for success and 0 if an error occurs. =head1 SEE ALSO L, L, L, L, L, L, L, L, L, L =head1 COPYRIGHT Copyright 2020 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut