diff options
author | tb <> | 2023-06-15 16:58:38 +0000 |
---|---|---|
committer | tb <> | 2023-06-15 16:58:38 +0000 |
commit | 268d273e069f95e00f3103b4a6f70f8406d80b0a (patch) | |
tree | b98c298226ea919d3af6f2ae7bc509aac96059b6 | |
parent | ff358849a594809a2f51c1931a2c76380464a4be (diff) | |
download | openbsd-268d273e069f95e00f3103b4a6f70f8406d80b0a.tar.gz openbsd-268d273e069f95e00f3103b4a6f70f8406d80b0a.tar.bz2 openbsd-268d273e069f95e00f3103b4a6f70f8406d80b0a.zip |
Add Ed25519 to the obj_xref table.
Also move part of for RSA-PSS to the top since it doesn't only apply to
RSA-PSS.
-rw-r--r-- | src/lib/libcrypto/objects/obj_xref.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/libcrypto/objects/obj_xref.txt b/src/lib/libcrypto/objects/obj_xref.txt index e874611a44..955977fc21 100644 --- a/src/lib/libcrypto/objects/obj_xref.txt +++ b/src/lib/libcrypto/objects/obj_xref.txt | |||
@@ -1,6 +1,8 @@ | |||
1 | # OID cross reference table. | 1 | # OID cross reference table. |
2 | # Links signatures OIDs to their corresponding public key algorithms | 2 | # Links signatures OIDs to their corresponding public key algorithms |
3 | # and digests. | 3 | # and digests. The digest "undef" indicates the public key's ASN.1 |
4 | # method should handle AlgorithmIdentifiers and (at least part of) the | ||
5 | # message digest explicitly. | ||
4 | 6 | ||
5 | md2WithRSAEncryption md2 rsaEncryption | 7 | md2WithRSAEncryption md2 rsaEncryption |
6 | md5WithRSAEncryption md5 rsaEncryption | 8 | md5WithRSAEncryption md5 rsaEncryption |
@@ -14,10 +16,11 @@ sha224WithRSAEncryption sha224 rsaEncryption | |||
14 | mdc2WithRSA mdc2 rsaEncryption | 16 | mdc2WithRSA mdc2 rsaEncryption |
15 | ripemd160WithRSA ripemd160 rsaEncryption | 17 | ripemd160WithRSA ripemd160 rsaEncryption |
16 | # For PSS the digest algorithm can vary and depends on the included | 18 | # For PSS the digest algorithm can vary and depends on the included |
17 | # AlgorithmIdentifier. The digest "undef" indicates the public key | 19 | # AlgorithmIdentifier. |
18 | # method should handle this explicitly. | ||
19 | rsassaPss undef rsaEncryption | 20 | rsassaPss undef rsaEncryption |
20 | 21 | ||
22 | Ed25519 undef Ed25519 | ||
23 | |||
21 | # Alternative deprecated OIDs. By using the older "rsa" OID this | 24 | # Alternative deprecated OIDs. By using the older "rsa" OID this |
22 | # type will be recognized by not normally used. | 25 | # type will be recognized by not normally used. |
23 | 26 | ||