mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
b425001010
Many of the new types introduced by OpenSSL 3.0 have an OSSL_ prefix, e.g., OSSL_CALLBACK, OSSL_PARAM, OSSL_ALGORITHM, OSSL_SERIALIZER. The OPENSSL_CTX type stands out a little by using a different prefix. For consistency reasons, this type is renamed to OSSL_LIB_CTX. Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12621)
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
/*
|
|
* Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
|
|
* Copyright Nokia 2007-2019
|
|
* Copyright Siemens AG 2015-2019
|
|
*
|
|
* 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
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
#ifndef OSSL_TEST_CMP_TESTLIB_H
|
|
# define OSSL_TEST_CMP_TESTLIB_H
|
|
|
|
# include <openssl/cmp.h>
|
|
# include <openssl/pem.h>
|
|
# include <openssl/rand.h>
|
|
# include "crypto/x509.h" /* for x509_set0_libctx() and x509_dup_ex() */
|
|
|
|
# include "../crypto/cmp/cmp_local.h"
|
|
|
|
# include "testutil.h"
|
|
|
|
# ifndef OPENSSL_NO_CMP
|
|
# define CMP_TEST_REFVALUE_LENGTH 15 /* arbitrary value */
|
|
EVP_PKEY *load_pem_key(const char *file, OSSL_LIB_CTX *libctx);
|
|
X509 *load_pem_cert(const char *file, OSSL_LIB_CTX *libctx);
|
|
X509_REQ *load_csr(const char *file);
|
|
OSSL_CMP_MSG *load_pkimsg(const char *file);
|
|
int valid_asn1_encoding(const OSSL_CMP_MSG *msg);
|
|
int STACK_OF_X509_cmp(const STACK_OF(X509) *sk1, const STACK_OF(X509) *sk2);
|
|
int STACK_OF_X509_push1(STACK_OF(X509) *sk, X509 *cert);
|
|
int print_to_bio_out(const char *func, const char *file, int line,
|
|
OSSL_CMP_severity level, const char *msg);
|
|
# endif
|
|
|
|
#endif /* OSSL_TEST_CMP_TESTLIB_H */
|