Eduard Suica

Results 39 comments of Eduard Suica

The latest version of TLSe works both with the old tomcrypt library and the github master branch. There are minor details that need to be checked and I need some...

Yes, I have a script but is written for tomcrypt 0x0117 - it should work as it is only concatenating all the sources in a single C file and replaces...

@headscott it’s a different problem. That’s a CA bundle, it got nothing to do with parse_verify.

@yyy1993 it’s been a while since last CA sync. I think it may be some unsupported data in the new CA root bundle. I will resync tls_root_ca.h in about two...

Hello! `tls_read` and `tls_write` work on the TLS buffer itself. `tls_consume_stream` writes the protocol bytes to the internal TLS buffer (after deciphering, validating and authorizing). So, we should have: `recv`...

Hello! curve25519.c is optional. I think tomcrypt already implemented x25519. I will try to drop curve25519.c in favor of tomcrypt implementation. TLSe is meant to be public domain. Initially it...

It should be possible. You should check the tomcrypt API reference, TLSe is just using the tomcrypt crypto funcitons. Just keep in mind that the private key when using ECDHE...

Hello, I've tested with both gcc and clang, everything seems ok. What compiler (and version) are you using? Also, please provide full info when opening an issue, in order to...

Ok, I've tested with VS2022, seems that it compiles libtomcrypt.c with the C++ compiler instead of C compiler (or using C++ rules on C code). It is just frustrating that...