2016-10-26 23:12:48 +02:00
|
|
|
/*
|
2020-10-15 14:10:06 +01:00
|
|
|
* Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-10-26 23:12:48 +02:00
|
|
|
*
|
2018-12-06 13:17:34 +01:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-10-26 23:12:48 +02:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2017-01-06 13:11:50 +00:00
|
|
|
/*
|
2017-11-11 19:03:10 -05:00
|
|
|
* This table MUST be kept in ascending order of the NID each method
|
2017-01-06 13:11:50 +00:00
|
|
|
* represents (corresponding to the pkey_id field) as OBJ_bsearch
|
|
|
|
* is used to search it.
|
|
|
|
*/
|
2016-10-26 23:12:48 +02:00
|
|
|
static const EVP_PKEY_ASN1_METHOD *standard_methods[] = {
|
|
|
|
#ifndef OPENSSL_NO_RSA
|
|
|
|
&rsa_asn1_meths[0],
|
|
|
|
&rsa_asn1_meths[1],
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
&dh_asn1_meth,
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
&dsa_asn1_meths[0],
|
|
|
|
&dsa_asn1_meths[1],
|
|
|
|
&dsa_asn1_meths[2],
|
|
|
|
&dsa_asn1_meths[3],
|
|
|
|
&dsa_asn1_meths[4],
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
&eckey_asn1_meth,
|
|
|
|
#endif
|
2016-11-24 21:42:49 +00:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
|
|
|
&rsa_pss_asn1_meth,
|
|
|
|
#endif
|
2016-10-26 23:12:48 +02:00
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
&dhx_asn1_meth,
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_EC
|
2016-12-16 17:00:43 -05:00
|
|
|
&ecx25519_asn1_meth,
|
2018-02-28 14:59:44 +00:00
|
|
|
&ecx448_asn1_meth,
|
2016-12-16 17:00:43 -05:00
|
|
|
#endif
|
2017-04-05 16:48:32 +01:00
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
&ed25519_asn1_meth,
|
2018-02-28 14:59:44 +00:00
|
|
|
&ed448_asn1_meth,
|
2017-04-05 16:48:32 +01:00
|
|
|
#endif
|
2018-06-18 15:51:56 -04:00
|
|
|
#ifndef OPENSSL_NO_SM2
|
|
|
|
&sm2_asn1_meth,
|
|
|
|
#endif
|
2016-10-26 23:12:48 +02:00
|
|
|
};
|
|
|
|
|