Files
cli/vendor/aws-lc-sys/aws-lc/crypto/evp_extra/p_methods.c

45 lines
1.3 KiB
C

// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR ISC
#include <openssl/base.h>
#include "../fipsmodule/evp/internal.h"
#include "../internal.h"
#include "internal.h"
static const EVP_PKEY_METHOD *const non_fips_pkey_evp_methods[] = {
&x25519_pkey_meth,
&dh_pkey_meth,
&dsa_pkey_meth
};
const EVP_PKEY_ASN1_METHOD *const asn1_evp_pkey_methods[] = {
&rsa_asn1_meth,
&rsa_pss_asn1_meth,
&ec_asn1_meth,
&dsa_asn1_meth,
&ed25519_asn1_meth,
&x25519_asn1_meth,
&pqdsa_asn1_meth,
&kem_asn1_meth,
&hmac_asn1_meth,
&dh_asn1_meth,
&ed25519ph_asn1_meth
};
const size_t asn1_evp_pkey_methods_size = sizeof(asn1_evp_pkey_methods)/sizeof(asn1_evp_pkey_methods[0]);
OPENSSL_STATIC_ASSERT(
NON_FIPS_EVP_PKEY_METHODS == OPENSSL_ARRAY_SIZE(non_fips_pkey_evp_methods),
NON_FIPS_EVP_PKEY_METHODS_does_not_have_the_expected_value)
OPENSSL_STATIC_ASSERT(
ASN1_EVP_PKEY_METHODS == OPENSSL_ARRAY_SIZE(asn1_evp_pkey_methods),
ASN1_EVP_PKEY_METHODS_does_not_have_the_expected_value)
const EVP_PKEY_METHOD *const *AWSLC_non_fips_pkey_evp_methods(void) {
return non_fips_pkey_evp_methods;
}
const EVP_PKEY_ASN1_METHOD *const *AWSLC_non_fips_pkey_evp_asn1_methods(void) {
return asn1_evp_pkey_methods;
}