diff options
author | David Hook <david.hook@keyfactor.com> | 2022-10-14 06:57:49 +1100 |
---|---|---|
committer | David Hook <david.hook@keyfactor.com> | 2022-10-14 06:57:49 +1100 |
commit | 3ed028aa4a1034b9941443b2a1e164db7b4d626b (patch) | |
tree | c7ccbe8e267187ccb622ab0922da8dc25dc6618f /crypto/src | |
parent | Revert mistaken framework change (diff) | |
download | BouncyCastle.NET-ed25519-3ed028aa4a1034b9941443b2a1e164db7b4d626b.tar.xz |
updated public key encoding to latest version of draft RFC
Diffstat (limited to 'crypto/src')
-rw-r--r-- | crypto/src/pqc/crypto/utils/SubjectPublicKeyInfoFactory.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/src/pqc/crypto/utils/SubjectPublicKeyInfoFactory.cs b/crypto/src/pqc/crypto/utils/SubjectPublicKeyInfoFactory.cs index 75a89c3f0..a919a71e5 100644 --- a/crypto/src/pqc/crypto/utils/SubjectPublicKeyInfoFactory.cs +++ b/crypto/src/pqc/crypto/utils/SubjectPublicKeyInfoFactory.cs @@ -116,10 +116,8 @@ namespace Org.BouncyCastle.Pqc.Crypto.Utilities DilithiumPublicKeyParameters parameters = (DilithiumPublicKeyParameters)publicKey; AlgorithmIdentifier algorithmIdentifier = new AlgorithmIdentifier(PqcUtilities.DilithiumOidLookup(parameters.Parameters)); - Asn1EncodableVector v = new Asn1EncodableVector(); - v.Add(new DerOctetString(parameters.Rho)); - v.Add(new DerOctetString(parameters.T1)); - return new SubjectPublicKeyInfo(algorithmIdentifier, new DerSequence(v)); + + return new SubjectPublicKeyInfo(algorithmIdentifier, new DerOctetString(Arrays.Concatenate(parameters.Rho, parameters.T1))); } if (publicKey is BikePublicKeyParameters) { |