]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/helpers/cmp_testlib.h
remove obsolete test/drbg_cavs_data.h
[thirdparty/openssl.git] / test / helpers / cmp_testlib.h
1 /*
2 * Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright Nokia 2007-2019
4 * Copyright Siemens AG 2015-2019
5 *
6 * Licensed under the Apache License 2.0 (the "License"). You may not use
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
10 */
11
12 #ifndef OSSL_TEST_CMP_TESTLIB_H
13 # define OSSL_TEST_CMP_TESTLIB_H
14
15 # include <openssl/cmp.h>
16 # include <openssl/pem.h>
17 # include <openssl/rand.h>
18 # include "crypto/x509.h" /* for x509_set0_libctx() and x509_dup_ex() */
19
20 # include "../../crypto/cmp/cmp_local.h"
21 # include "../testutil.h"
22
23 # ifndef OPENSSL_NO_CMP
24 # define CMP_TEST_REFVALUE_LENGTH 15 /* arbitrary value */
25 EVP_PKEY *load_pem_key(const char *file, OSSL_LIB_CTX *libctx);
26 X509 *load_pem_cert(const char *file, OSSL_LIB_CTX *libctx);
27 X509_REQ *load_csr(const char *file);
28 OSSL_CMP_MSG *load_pkimsg(const char *file);
29 int valid_asn1_encoding(const OSSL_CMP_MSG *msg);
30 int STACK_OF_X509_cmp(const STACK_OF(X509) *sk1, const STACK_OF(X509) *sk2);
31 int STACK_OF_X509_push1(STACK_OF(X509) *sk, X509 *cert);
32 int print_to_bio_out(const char *func, const char *file, int line,
33 OSSL_CMP_severity level, const char *msg);
34 # endif
35
36 #endif /* OSSL_TEST_CMP_TESTLIB_H */