headscott

Results 17 comments of headscott

I have/had the same problems. I asked at the Github libtom/libtomcrypt for help, because it failed in their pkcs_1_pss_decode method. They told me that you can remove salt completly, because...

I found the solution for tls_parse_verify_tls13!!! First, as I already said, you have to change the values in the rsa_sign_hash_ex and rsa_verify_hash_ex calls. After that, you should also add an...

Hey, was something wrong with rsa_sign_hash_ex? Or why did you undo the changes? Or was it just because you still need to check it, but you have it in mind?...

There is another small problem with the version saved in the certificate: if the certificate is X.509v1 you save cert->version = 0 but then you can't print it in the...

Could you try to undo the latest changes in tlse.c? So make this line: CHECK_SIZE(7 + signature_size, buf_len, TLS_NEED_MORE_DATA) to this line: CHECK_SIZE(7 + size, buf_len, TLS_NEED_MORE_DATA) Is the same...

Oh wait, an Update: I found Softmax. But you only use it for loss functions, right? Not as activation function?