diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-03-20 15:23:47 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-03-20 15:23:47 +0700 |
commit | 58cb9bd8b944b5c4269204eeab127de9203b9ac1 (patch) | |
tree | e23638c104f1ecf474994acf79dddef7fb7c198f /crypto/src/openpgp/PgpSignature.cs | |
parent | Add tag bounds check to prevent old packet confusion. (diff) | |
download | BouncyCastle.NET-ed25519-58cb9bd8b944b5c4269204eeab127de9203b9ac1.tar.xz |
Add EdDsa_Legacy
Diffstat (limited to 'crypto/src/openpgp/PgpSignature.cs')
-rw-r--r-- | crypto/src/openpgp/PgpSignature.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/openpgp/PgpSignature.cs b/crypto/src/openpgp/PgpSignature.cs index d1146183a..d6ffc0f74 100644 --- a/crypto/src/openpgp/PgpSignature.cs +++ b/crypto/src/openpgp/PgpSignature.cs @@ -370,7 +370,7 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp { signature = sigValues[0].Value.ToByteArrayUnsigned(); } - else if (KeyAlgorithm == PublicKeyAlgorithmTag.EdDsa) + else if (KeyAlgorithm == PublicKeyAlgorithmTag.EdDsa_Legacy) { if (sigValues.Length != 2) throw new InvalidOperationException(); |