diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-07-24 12:57:09 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-07-24 12:57:09 +0700 |
commit | 521454273ff2d91222cf4b8ac6ab5f16c54b40df (patch) | |
tree | a996faffeebf62b4866a2e26a5c5fcf3407662c0 /crypto/src/x509 | |
parent | adjusted HQC and BIKE keys for latest BC Java changes (diff) | |
download | BouncyCastle.NET-ed25519-521454273ff2d91222cf4b8ac6ab5f16c54b40df.tar.xz |
Use Asn1Set FromVector utility methods
Diffstat (limited to 'crypto/src/x509')
-rw-r--r-- | crypto/src/x509/X509Attribute.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/x509/X509Attribute.cs b/crypto/src/x509/X509Attribute.cs index 248d66cc4..dbb61d9cc 100644 --- a/crypto/src/x509/X509Attribute.cs +++ b/crypto/src/x509/X509Attribute.cs @@ -47,7 +47,7 @@ namespace Org.BouncyCastle.X509 string oid, Asn1EncodableVector value) { - this.attr = new AttributeX509(new DerObjectIdentifier(oid), new DerSet(value)); + this.attr = new AttributeX509(new DerObjectIdentifier(oid), DerSet.FromVector(value)); } public string Oid |