Lines Matching +full:out +full:- +full:functions
43 - PEM object encoding routines
58 The following functions have been deprecated since OpenSSL 3.0, and can be
64 int PEM_write_DHxparams(FILE *out, const DH *dh);
65 int PEM_write_bio_DHxparams(BIO *out, const DH *dh);
68 int PEM_write_ECPKParameters(FILE *out, const EC_GROUP *x);
69 int PEM_write_bio_ECPKParameters(BIO *out, const EC_GROUP *x),
73 int PEM_write_EC_PUBKEY(FILE *out, const EC_KEY *x);
74 int PEM_write_bio_EC_PUBKEY(BIO *out, const EC_KEY *x);
76 EC_KEY *PEM_read_ECPrivateKey(FILE *out, EC_KEY **x, pem_password_cb *cb, void *u);
77 EC_KEY *PEM_read_bio_ECPrivateKey(BIO *out, EC_KEY **x, pem_password_cb *cb, void *u);
78 int PEM_write_ECPrivateKey(FILE *out, const EC_KEY *x, const EVP_CIPHER *enc,
81 int PEM_write_bio_ECPrivateKey(BIO *out, const EC_KEY *x, const EVP_CIPHER *enc,
87 All of the functions described on this page are deprecated.
98 L<ASN1_ITEM(3)>. For more information on the lower-level routines used
99 by the functions here, see L<PEM_read(3)>.
101 B<PEM_read_I<TYPE>>() reads a PEM-encoded object of B<I<TYPE>> from the file
115 These functions make no assumption regarding the pass phrase received from the
130 L<passphrase-encoding(7)>
134 The functions PEM_write_DHxparams(), PEM_write_bio_DHxparams(),
145 Copyright 1998-2023 The OpenSSL Project Authors. All Rights Reserved.