Path: blob/main/crypto/openssl/providers/implementations/include/prov/decoders.h
48534 views
/*1* Copyright 2025 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#include <openssl/core.h>1011int ossl_epki2pki_der_decode(unsigned char *der, long der_len, int selection,12OSSL_CALLBACK *data_cb, void *data_cbarg,13OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg,14OSSL_LIB_CTX *libctx, const char *propq);1516int ossl_spki2typespki_der_decode(unsigned char *der, long len, int selection,17OSSL_CALLBACK *data_cb, void *data_cbarg,18OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg,19OSSL_LIB_CTX *libctx, const char *propq);202122