Colm MacCárthaigh
Colm MacCárthaigh
We have an internal AWS team customer who is very interested in using s2n as an SSL/TLS wrapper for an existing TCP service. They only run on linux, so a...
It should be possible with various invokations of nm/objdumb/elf-utils to ensure that s2n is remaining ABI stable (at least within reason). Adding systematic regression tests would guard against developer error.
Some platforms have a getentropy() call for retrieving randomly generated data, Linux has recently added getrandom(), an equivalent call. s2n should support these where available and avoid using /dev/urandom.
I'm going to start work soon on client-side authentication support in s2n. This is also sometimes called "Mutual auth" and means that TLS clients will be able to present a...