diff options
author | David Hook <dgh@cryptoworkshop.com> | 2022-07-10 13:21:58 +1000 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2022-07-10 13:21:58 +1000 |
commit | 521f1251943732b2f917b8c2787aebb4df164f21 (patch) | |
tree | 0168cebe2d98198722135b8c9c62eb07ec28b13a /crypto/src/asn1/misc | |
parent | Fix a few warnings (diff) | |
download | BouncyCastle.NET-ed25519-521f1251943732b2f917b8c2787aebb4df164f21.tar.xz |
added Oracle PKCS12 trusted certificate usage oid
Diffstat (limited to 'crypto/src/asn1/misc')
-rw-r--r-- | crypto/src/asn1/misc/MiscObjectIdentifiers.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/src/asn1/misc/MiscObjectIdentifiers.cs b/crypto/src/asn1/misc/MiscObjectIdentifiers.cs index 1f101882f..54e4280b9 100644 --- a/crypto/src/asn1/misc/MiscObjectIdentifiers.cs +++ b/crypto/src/asn1/misc/MiscObjectIdentifiers.cs @@ -92,5 +92,7 @@ namespace Org.BouncyCastle.Asn1.Misc // // Scrypt public static readonly DerObjectIdentifier id_scrypt = new DerObjectIdentifier("1.3.6.1.4.1.11591.4.11"); + + public static readonly DerObjectIdentifier id_oracle_pkcs12_trusted_key_usage = new DerObjectIdentifier("2.16.840.1.113894.746875.1.1"); } } |