]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/common/der/DSA.asn1
PROV: Add DERlib support for DSA
[thirdparty/openssl.git] / providers / common / der / DSA.asn1
CommitLineData
8c555803
RL
1-- -------------------------------------------------------------------
2-- Taken from RFC 3279, 3 ASN.1 Module
3-- (https://www.rfc-editor.org/rfc/rfc3279.html#section-3)
4
5-- OID for DSA public key
6
7id-dsa OBJECT IDENTIFIER ::= {
8 iso(1) member-body(2) us(840) x9-57(10040) x9algorithm(4) 1 }
9
10-- OID for DSA signature generated with SHA-1 hash
11
12id-dsa-with-sha1 OBJECT IDENTIFIER ::= {
13 iso(1) member-body(2) us(840) x9-57 (10040) x9algorithm(4) 3 }
14
15
16-- -------------------------------------------------------------------
17-- Taken from https://csrc.nist.gov/projects/computer-security-objects-register/algorithm-registration
18
19sigAlgs OBJECT IDENTIFIER ::= { 2 16 840 1 101 3 4 3 }
20
21id-dsa-with-sha224 OBJECT IDENTIFIER ::= { sigAlgs 1 }
22id-dsa-with-sha256 OBJECT IDENTIFIER ::= { sigAlgs 2 }
23id-dsa-with-sha384 OBJECT IDENTIFIER ::= { sigAlgs 3 }
24id-dsa-with-sha512 OBJECT IDENTIFIER ::= { sigAlgs 4 }
25
26id-dsa-with-sha3-224 OBJECT IDENTIFIER ::= { sigAlgs 5 }
27id-dsa-with-sha3-256 OBJECT IDENTIFIER ::= { sigAlgs 6 }
28id-dsa-with-sha3-384 OBJECT IDENTIFIER ::= { sigAlgs 7 }
29id-dsa-with-sha3-512 OBJECT IDENTIFIER ::= { sigAlgs 8 }