fix various style issues
[openssl.git] / crypto / asn1 / standard_methods.h
1 /*
2  * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 /* Keep this sorted in type order !! */
11 static const EVP_PKEY_ASN1_METHOD *standard_methods[] = {
12 #ifndef OPENSSL_NO_RSA
13     &rsa_asn1_meths[0],
14     &rsa_asn1_meths[1],
15 #endif
16 #ifndef OPENSSL_NO_DH
17     &dh_asn1_meth,
18 #endif
19 #ifndef OPENSSL_NO_DSA
20     &dsa_asn1_meths[0],
21     &dsa_asn1_meths[1],
22     &dsa_asn1_meths[2],
23     &dsa_asn1_meths[3],
24     &dsa_asn1_meths[4],
25 #endif
26 #ifndef OPENSSL_NO_EC
27     &eckey_asn1_meth,
28 #endif
29     &hmac_asn1_meth,
30 #ifndef OPENSSL_NO_CMAC
31     &cmac_asn1_meth,
32 #endif
33 #ifndef OPENSSL_NO_RSA
34     &rsa_pss_asn1_meth,
35 #endif
36 #ifndef OPENSSL_NO_DH
37     &dhx_asn1_meth,
38 #endif
39 #ifndef OPENSSL_NO_EC
40     &ecx25519_asn1_meth
41 #endif
42 };
43