From 705989da39a89074849b8d1e4a2cc9588f8a3a28 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Sat, 1 Nov 2014 19:37:27 -0700 Subject: [PATCH] add new curves from draft-ietf-tls-negotiated-ff-dhe --- scripts/base/protocols/ssl/consts.bro | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/base/protocols/ssl/consts.bro b/scripts/base/protocols/ssl/consts.bro index 54952988f0..278a2a37ae 100644 --- a/scripts/base/protocols/ssl/consts.bro +++ b/scripts/base/protocols/ssl/consts.bro @@ -158,6 +158,12 @@ export { [26] = "brainpoolP256r1", [27] = "brainpoolP384r1", [28] = "brainpoolP512r1", + # draft-ietf-tls-negotiated-ff-dhe-02 + [256] = "ffdhe2432", + [257] = "ffdhe3072", + [258] = "ffdhe4096", + [259] = "ffdhe6144", + [260] = "ffdhe8192", [0xFF01] = "arbitrary_explicit_prime_curves", [0xFF02] = "arbitrary_explicit_char2_curves" } &default=function(i: count):string { return fmt("unknown-%d", i); };