Path: blob/main/crypto/openssl/providers/common/der/der_dsa_gen.c
108106 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 */21/* clang-format off */2223/*24* id-dsa OBJECT IDENTIFIER ::= {25* iso(1) member-body(2) us(840) x9-57(10040) x9algorithm(4) 1 }26*/27const unsigned char ossl_der_oid_id_dsa[DER_OID_SZ_id_dsa] = {28DER_OID_V_id_dsa29};3031/*32* id-dsa-with-sha1 OBJECT IDENTIFIER ::= {33* iso(1) member-body(2) us(840) x9-57 (10040) x9algorithm(4) 3 }34*/35const unsigned char ossl_der_oid_id_dsa_with_sha1[DER_OID_SZ_id_dsa_with_sha1] = {36DER_OID_V_id_dsa_with_sha137};3839/*40* id-dsa-with-sha224 OBJECT IDENTIFIER ::= { sigAlgs 1 }41*/42const unsigned char ossl_der_oid_id_dsa_with_sha224[DER_OID_SZ_id_dsa_with_sha224] = {43DER_OID_V_id_dsa_with_sha22444};4546/*47* id-dsa-with-sha256 OBJECT IDENTIFIER ::= { sigAlgs 2 }48*/49const unsigned char ossl_der_oid_id_dsa_with_sha256[DER_OID_SZ_id_dsa_with_sha256] = {50DER_OID_V_id_dsa_with_sha25651};5253/*54* id-dsa-with-sha384 OBJECT IDENTIFIER ::= { sigAlgs 3 }55*/56const unsigned char ossl_der_oid_id_dsa_with_sha384[DER_OID_SZ_id_dsa_with_sha384] = {57DER_OID_V_id_dsa_with_sha38458};5960/*61* id-dsa-with-sha512 OBJECT IDENTIFIER ::= { sigAlgs 4 }62*/63const unsigned char ossl_der_oid_id_dsa_with_sha512[DER_OID_SZ_id_dsa_with_sha512] = {64DER_OID_V_id_dsa_with_sha51265};6667/*68* id-dsa-with-sha3-224 OBJECT IDENTIFIER ::= { sigAlgs 5 }69*/70const unsigned char ossl_der_oid_id_dsa_with_sha3_224[DER_OID_SZ_id_dsa_with_sha3_224] = {71DER_OID_V_id_dsa_with_sha3_22472};7374/*75* id-dsa-with-sha3-256 OBJECT IDENTIFIER ::= { sigAlgs 6 }76*/77const unsigned char ossl_der_oid_id_dsa_with_sha3_256[DER_OID_SZ_id_dsa_with_sha3_256] = {78DER_OID_V_id_dsa_with_sha3_25679};8081/*82* id-dsa-with-sha3-384 OBJECT IDENTIFIER ::= { sigAlgs 7 }83*/84const unsigned char ossl_der_oid_id_dsa_with_sha3_384[DER_OID_SZ_id_dsa_with_sha3_384] = {85DER_OID_V_id_dsa_with_sha3_38486};8788/*89* id-dsa-with-sha3-512 OBJECT IDENTIFIER ::= { sigAlgs 8 }90*/91const unsigned char ossl_der_oid_id_dsa_with_sha3_512[DER_OID_SZ_id_dsa_with_sha3_512] = {92DER_OID_V_id_dsa_with_sha3_51293};9495/* clang-format on */969798