summary refs log tree commit diff
path: root/crypto/src/asn1/gnu/GNUObjectIdentifiers.cs
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2017-06-25 18:20:45 +1000
committerDavid Hook <dgh@cryptoworkshop.com>2017-06-25 18:20:45 +1000
commit67aa67a62bfe7b35fe035bafbc5e9770b1debeb1 (patch)
tree9492b3fe1d559ceb9965f4d6b3bb78452796fbbe /crypto/src/asn1/gnu/GNUObjectIdentifiers.cs
parentupdate (diff)
parentInitial cut of DSTU7564 digest and HMAC. (diff)
downloadBouncyCastle.NET-ed25519-67aa67a62bfe7b35fe035bafbc5e9770b1debeb1.tar.xz
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'crypto/src/asn1/gnu/GNUObjectIdentifiers.cs')
-rw-r--r--crypto/src/asn1/gnu/GNUObjectIdentifiers.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/src/asn1/gnu/GNUObjectIdentifiers.cs b/crypto/src/asn1/gnu/GNUObjectIdentifiers.cs

index 9311a3ac1..b322ef233 100644 --- a/crypto/src/asn1/gnu/GNUObjectIdentifiers.cs +++ b/crypto/src/asn1/gnu/GNUObjectIdentifiers.cs
@@ -27,5 +27,10 @@ namespace Org.BouncyCastle.Asn1.Gnu public static readonly DerObjectIdentifier Serpent256Cfb = new DerObjectIdentifier("1.3.6.1.4.1.11591.13.2.44"); // Serpent-256-CFB public static readonly DerObjectIdentifier Crc = new DerObjectIdentifier("1.3.6.1.4.1.11591.14"); // CRC algorithms public static readonly DerObjectIdentifier Crc32 = new DerObjectIdentifier("1.3.6.1.4.1.11591.14.1"); // CRC 32 + + /** 1.3.6.1.4.1.11591.15 - ellipticCurve */ + public static readonly DerObjectIdentifier EllipticCurve = new DerObjectIdentifier("1.3.6.1.4.1.11591.15"); + + public static readonly DerObjectIdentifier Ed25519 = EllipticCurve.Branch("1"); } }