diff options
Diffstat (limited to 'crypto/src/security/SecurityUtilities.cs')
-rw-r--r-- | crypto/src/security/SecurityUtilities.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crypto/src/security/SecurityUtilities.cs b/crypto/src/security/SecurityUtilities.cs new file mode 100644 index 000000000..ff24c6e1e --- /dev/null +++ b/crypto/src/security/SecurityUtilities.cs @@ -0,0 +1,13 @@ +namespace Org.BouncyCastle.Security +{ + internal static class SecurityUtilities + { + /* + * These three got introduced in some messages as a result of a typo in an early document. We don't produce + * anything using these OID values, but we'll read them. + */ + internal static readonly string WrongAes128 = "2.16.840.1.101.3.4.2"; + internal static readonly string WrongAes192 = "2.16.840.1.101.3.4.22"; + internal static readonly string WrongAes256 = "2.16.840.1.101.3.4.42"; + } +} |