forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest BearSSL code. (esp8266#5669)
- Loading branch information
1 parent
5e4c2e9
commit a9fb6db
Showing
5 changed files
with
63 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// Do not edit -- Automatically generated by tools/sdk/ssl/bearssl/Makefile | ||
#define BEARSSL_GIT 79edbc8 | ||
#define BEARSSL_GIT 6778687 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bearssl
updated
23 files
+60 −0 | inc/bearssl_ec.h | |
+2 −2 | inc/pgmspace.h | |
+12 −0 | mk/Rules.mk | |
+3 −0 | mk/mkrules.sh | |
+31 −6 | src/ec/ec_all_m31.c | |
+62 −31 | src/ec/ec_c25519_m31.c | |
+4 −0 | src/ec/ec_c25519_m62.c | |
+835 −0 | src/ec/ec_c25519_m64.c | |
+1 −1 | src/ec/ec_p256_m15.c | |
+1 −1 | src/ec/ec_p256_m31.c | |
+1,765 −0 | src/ec/ec_p256_m62.c | |
+1,730 −0 | src/ec/ec_p256_m64.c | |
+4 −0 | src/inner.h | |
+39 −5 | src/int/i31_montmul.c | |
+13 −0 | src/int/i31_mulacc.c | |
+4 −0 | src/int/i32_mulacc.c | |
+2 −1 | src/rand/sysrng.c | |
+1 −1 | src/rsa/rsa_i15_modulus.c | |
+1 −1 | src/rsa/rsa_i31_modulus.c | |
+55 −2 | test/test_crypto.c | |
+76 −0 | test/test_speed.c | |
+6 −0 | tools/names.c | |
+7 −0 | tools/server.c |