crypto
Here are 2,660 public repositories matching this topic...
-
Updated
Sep 11, 2020 - JavaScript
-
Updated
Sep 11, 2020 - Java
-
Updated
Sep 11, 2020 - Java
-
Updated
Sep 7, 2020 - JavaScript
-
Updated
Sep 9, 2020 - C#
-
Updated
Aug 9, 2020
tests/include/test/psa_crypto_helpers.h contains function definitions. That's a remnant from when we didn't have tests/src/*.c and unit tests had to be compiled as a monolithic C file. It's a problem because merely including the header causes an unused-function warning. The header should contain only function declarations (or static inline function definitions, but the functions in that head
https://scotthelme.co.uk/a-new-security-header-feature-policy/
I guess it will be easy to add, because we certainly don't use any of these features.
Or maybe "gyroscope" or so may be used by the random number generator in sjcl, but that's all.
-
Updated
Sep 11, 2020 - C++
-
Updated
Sep 11, 2020 - C++
-
Updated
Sep 11, 2020 - Java
-
Updated
Sep 3, 2020 - Python
-
Updated
Feb 18, 2020 - Java
-
Updated
Jun 13, 2020 - Go
-
Updated
Aug 19, 2020 - JavaScript
-
Updated
Nov 2, 2019 - C++
-
Updated
Aug 26, 2020 - Go
socket.cpp, socket_udp.cpp and cli/socket_utils.h have a lot of shared/duplicated code for handling differences in socket interface between BSD and Windsock. Consolidate into a single internal header which can be used across all three.
-
Updated
May 9, 2020 - JavaScript
-
Updated
Aug 11, 2020 - Go
-
Updated
Aug 1, 2020 - C++
Improve this page
Add a description, image, and links to the crypto topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the crypto topic, visit your repo's landing page and select "manage topics."
Problem:
As mentioned in the comment
New cipher suites MUST be added here, IN ORDER, or they will not be properly initialized.https://github.com/awslabs/s2n/blob/64297d8ce45a38394094f1c31b2ecf5735472edb/tls/s2n_cipher_suites.c#L768-L772
Solution:
Unit test to validate the array order.