Path: blob/main/crypto/openssl/providers/common/der/der_dsa_gen.c
48383 views
/*1* WARNING: do not edit!2* Generated by Makefile from providers/common/der/der_dsa_gen.c.in3*4* Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.5*6* Licensed under the Apache License 2.0 (the "License"). You may not use7* this file except in compliance with the License. You can obtain a copy8* in the file LICENSE in the source distribution or at9* https://www.openssl.org/source/license.html10*/1112/*13* DSA low level APIs are deprecated for public use, but still ok for14* internal use.15*/16#include "internal/deprecated.h"1718#include "prov/der_dsa.h"1920/* Well known OIDs precompiled */2122/*23* id-dsa OBJECT IDENTIFIER ::= {24* iso(1) member-body(2) us(840) x9-57(10040) x9algorithm(4) 1 }25*/26const unsigned char ossl_der_oid_id_dsa[DER_OID_SZ_id_dsa] = {27DER_OID_V_id_dsa28};2930/*31* id-dsa-with-sha1 OBJECT IDENTIFIER ::= {32* iso(1) member-body(2) us(840) x9-57 (10040) x9algorithm(4) 3 }33*/34const unsigned char ossl_der_oid_id_dsa_with_sha1[DER_OID_SZ_id_dsa_with_sha1] = {35DER_OID_V_id_dsa_with_sha136};3738/*39* id-dsa-with-sha224 OBJECT IDENTIFIER ::= { sigAlgs 1 }40*/41const unsigned char ossl_der_oid_id_dsa_with_sha224[DER_OID_SZ_id_dsa_with_sha224] = {42DER_OID_V_id_dsa_with_sha22443};4445/*46* id-dsa-with-sha256 OBJECT IDENTIFIER ::= { sigAlgs 2 }47*/48const unsigned char ossl_der_oid_id_dsa_with_sha256[DER_OID_SZ_id_dsa_with_sha256] = {49DER_OID_V_id_dsa_with_sha25650};5152/*53* id-dsa-with-sha384 OBJECT IDENTIFIER ::= { sigAlgs 3 }54*/55const unsigned char ossl_der_oid_id_dsa_with_sha384[DER_OID_SZ_id_dsa_with_sha384] = {56DER_OID_V_id_dsa_with_sha38457};5859/*60* id-dsa-with-sha512 OBJECT IDENTIFIER ::= { sigAlgs 4 }61*/62const unsigned char ossl_der_oid_id_dsa_with_sha512[DER_OID_SZ_id_dsa_with_sha512] = {63DER_OID_V_id_dsa_with_sha51264};6566/*67* id-dsa-with-sha3-224 OBJECT IDENTIFIER ::= { sigAlgs 5 }68*/69const unsigned char ossl_der_oid_id_dsa_with_sha3_224[DER_OID_SZ_id_dsa_with_sha3_224] = {70DER_OID_V_id_dsa_with_sha3_22471};7273/*74* id-dsa-with-sha3-256 OBJECT IDENTIFIER ::= { sigAlgs 6 }75*/76const unsigned char ossl_der_oid_id_dsa_with_sha3_256[DER_OID_SZ_id_dsa_with_sha3_256] = {77DER_OID_V_id_dsa_with_sha3_25678};7980/*81* id-dsa-with-sha3-384 OBJECT IDENTIFIER ::= { sigAlgs 7 }82*/83const unsigned char ossl_der_oid_id_dsa_with_sha3_384[DER_OID_SZ_id_dsa_with_sha3_384] = {84DER_OID_V_id_dsa_with_sha3_38485};8687/*88* id-dsa-with-sha3-512 OBJECT IDENTIFIER ::= { sigAlgs 8 }89*/90const unsigned char ossl_der_oid_id_dsa_with_sha3_512[DER_OID_SZ_id_dsa_with_sha3_512] = {91DER_OID_V_id_dsa_with_sha3_51292};93949596