Update copyright year
[openssl.git] / include / openssl / ess.h
1 /*
2  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
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 #ifndef OPENSSL_ESS_H
11 # define OPENSSL_ESS_H
12
13 # include <openssl/opensslconf.h>
14
15 # ifdef  __cplusplus
16 extern "C" {
17 # endif
18 # include <openssl/safestack.h>
19 # include <openssl/x509.h>
20 # include <openssl/esserr.h>
21
22
23 typedef struct ESS_issuer_serial ESS_ISSUER_SERIAL;
24 typedef struct ESS_cert_id ESS_CERT_ID;
25 typedef struct ESS_signing_cert ESS_SIGNING_CERT;
26
27 DEFINE_OR_DECLARE_STACK_OF(ESS_CERT_ID)
28
29 typedef struct ESS_signing_cert_v2_st ESS_SIGNING_CERT_V2;
30 typedef struct ESS_cert_id_v2_st ESS_CERT_ID_V2;
31
32 DEFINE_OR_DECLARE_STACK_OF(ESS_CERT_ID_V2)
33
34 DECLARE_ASN1_ALLOC_FUNCTIONS(ESS_ISSUER_SERIAL)
35 DECLARE_ASN1_ENCODE_FUNCTIONS_only(ESS_ISSUER_SERIAL, ESS_ISSUER_SERIAL)
36 DECLARE_ASN1_DUP_FUNCTION(ESS_ISSUER_SERIAL)
37
38 DECLARE_ASN1_ALLOC_FUNCTIONS(ESS_CERT_ID)
39 DECLARE_ASN1_ENCODE_FUNCTIONS_only(ESS_CERT_ID, ESS_CERT_ID)
40 DECLARE_ASN1_DUP_FUNCTION(ESS_CERT_ID)
41
42 DECLARE_ASN1_ALLOC_FUNCTIONS(ESS_SIGNING_CERT)
43 DECLARE_ASN1_ENCODE_FUNCTIONS_only(ESS_SIGNING_CERT, ESS_SIGNING_CERT)
44 DECLARE_ASN1_DUP_FUNCTION(ESS_SIGNING_CERT)
45
46 DECLARE_ASN1_ALLOC_FUNCTIONS(ESS_CERT_ID_V2)
47 DECLARE_ASN1_ENCODE_FUNCTIONS_only(ESS_CERT_ID_V2, ESS_CERT_ID_V2)
48 DECLARE_ASN1_DUP_FUNCTION(ESS_CERT_ID_V2)
49
50 DECLARE_ASN1_ALLOC_FUNCTIONS(ESS_SIGNING_CERT_V2)
51 DECLARE_ASN1_ENCODE_FUNCTIONS_only(ESS_SIGNING_CERT_V2, ESS_SIGNING_CERT_V2)
52 DECLARE_ASN1_DUP_FUNCTION(ESS_SIGNING_CERT_V2)
53
54 # ifdef  __cplusplus
55 }
56 # endif
57 #endif