aboutsummaryrefslogtreecommitdiff
path: root/networking/tls.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-11-13 02:16:24 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-11-13 02:17:54 +0100
commitbddb6545a982696bde417a9ae621f9e2d3c22b3d (patch)
treebacdebc4431ff1c438b41f9ae7341ef06b78ad94 /networking/tls.h
parent8767c12774d9392565f20d3ea4e28bb1b6075a31 (diff)
downloadbusybox-bddb6545a982696bde417a9ae621f9e2d3c22b3d.tar.gz
tls: add support for ECDHE-ECDSA-AES-128-CBC-SHA and x25519 curve
function old new delta curve25519 - 835 +835 tls_handshake 1619 1935 +316 xc_diffadd - 230 +230 fe_mul__distinct - 149 +149 lm_sub - 103 +103 lm_add - 82 +82 fe_mul_c - 74 +74 fe_select - 45 +45 static.f25519_one - 32 +32 static.basepoint9 - 32 +32 static.OID_ECDSA_KEY_ALG - 21 +21 static.OID_RSA_KEY_ALG - 13 +13 static.supported_groups - 8 +8 static.empty_client_cert - 7 +7 der_binary_to_pstm 40 42 +2 static.expected 13 - -13 ------------------------------------------------------------------------------ (add/remove: 14/1 grow/shrink: 2/0 up/down: 1949/-13) Total: 1936 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls.h')
-rw-r--r--networking/tls.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/tls.h b/networking/tls.h
index d487f3810..66d25eff5 100644
--- a/networking/tls.h
+++ b/networking/tls.h
@@ -94,6 +94,7 @@ void tls_get_random(void *buf, unsigned len);
#include "tls_pstm.h"
-#include "tls_rsa.h"
#include "tls_symmetric.h"
#include "tls_aes.h"
+#include "tls_rsa.h"
+#include "tls_fe.h"