diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-09-27 11:13:26 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-09-27 11:13:26 +0700 |
commit | 4121892205a5e667f51662820641d4f5ba4ec1f3 (patch) | |
tree | 64a9e1822b1e264c9716d39b460db20db35751a6 | |
parent | Update comments now that encrypt-then-MAC is out of draft (RFC 7366) (diff) | |
download | BouncyCastle.NET-ed25519-4121892205a5e667f51662820641d4f5ba4ec1f3.tar.xz |
Early code-point assignment for draft-ietf-tls-session-hash
-rw-r--r-- | crypto/src/crypto/tls/ExtensionType.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/src/crypto/tls/ExtensionType.cs b/crypto/src/crypto/tls/ExtensionType.cs index 3d00509af..acee380b6 100644 --- a/crypto/src/crypto/tls/ExtensionType.cs +++ b/crypto/src/crypto/tls/ExtensionType.cs @@ -49,16 +49,16 @@ namespace Org.BouncyCastle.Crypto.Tls public const int encrypt_then_mac = 22; /* - * RFC 5077 7. + * draft-ietf-tls-session-hash-01 + * + * NOTE: Early code-point assignment */ - public const int session_ticket = 35; + public const int extended_master_secret = 23; /* - * draft-ietf-tls-session-hash-01 - * - * WARNING: Placeholder value; the real value is TBA + * RFC 5077 7. */ - public static readonly int extended_master_secret = 100; + public const int session_ticket = 35; /* * draft-ietf-tls-negotiated-ff-dhe-01 |