DSA.asn1 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. -- Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
  2. --
  3. -- Licensed under the Apache License 2.0 (the "License"). You may not use
  4. -- this file except in compliance with the License. You can obtain a copy
  5. -- in the file LICENSE in the source distribution or at
  6. -- https://www.openssl.org/source/license.html
  7. -- -------------------------------------------------------------------
  8. -- Taken from RFC 3279, 3 ASN.1 Module
  9. -- (https://www.rfc-editor.org/rfc/rfc3279.html#section-3)
  10. -- OID for DSA public key
  11. id-dsa OBJECT IDENTIFIER ::= {
  12. iso(1) member-body(2) us(840) x9-57(10040) x9algorithm(4) 1 }
  13. -- OID for DSA signature generated with SHA-1 hash
  14. id-dsa-with-sha1 OBJECT IDENTIFIER ::= {
  15. iso(1) member-body(2) us(840) x9-57 (10040) x9algorithm(4) 3 }
  16. -- -------------------------------------------------------------------
  17. -- Taken from https://csrc.nist.gov/projects/computer-security-objects-register/algorithm-registration
  18. sigAlgs OBJECT IDENTIFIER ::= { 2 16 840 1 101 3 4 3 }
  19. id-dsa-with-sha224 OBJECT IDENTIFIER ::= { sigAlgs 1 }
  20. id-dsa-with-sha256 OBJECT IDENTIFIER ::= { sigAlgs 2 }
  21. id-dsa-with-sha384 OBJECT IDENTIFIER ::= { sigAlgs 3 }
  22. id-dsa-with-sha512 OBJECT IDENTIFIER ::= { sigAlgs 4 }
  23. id-dsa-with-sha3-224 OBJECT IDENTIFIER ::= { sigAlgs 5 }
  24. id-dsa-with-sha3-256 OBJECT IDENTIFIER ::= { sigAlgs 6 }
  25. id-dsa-with-sha3-384 OBJECT IDENTIFIER ::= { sigAlgs 7 }
  26. id-dsa-with-sha3-512 OBJECT IDENTIFIER ::= { sigAlgs 8 }