blob: 8deb342b79134d16860b90585c7ed1ce7006beee [file] [log] [blame]
Shane Lontis90a1f2d2020-07-25 19:11:03 +10001/*
Matt Caswell8020d792021-03-11 13:27:36 +00002 * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
Shane Lontis90a1f2d2020-07-25 19:11:03 +10003 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include "crypto/pkcs7.h"
11
Shane Lontis681618c2021-02-19 17:29:29 +100012const PKCS7_CTX *ossl_pkcs7_get0_ctx(const PKCS7 *p7);
13OSSL_LIB_CTX *ossl_pkcs7_ctx_get0_libctx(const PKCS7_CTX *ctx);
14const char *ossl_pkcs7_ctx_get0_propq(const PKCS7_CTX *ctx);
Jon Spillettb5368802021-02-17 17:56:36 +100015
16int ossl_pkcs7_ctx_propagate(const PKCS7 *from, PKCS7 *to);