You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A typical RSA key 2048 bit cannot sign the nonces returned using WebID + RSA
PKCS1v15 uses 11 bytes padding and so can have a max message size of 256 - 11 = 245 bytes
Typically the host + nonce string to sign is of length greater than this.
Would it be possible to use a shorter nonce?
openssl rsautl -sign -in tmp -inkey id_rsa.pem -out sig
RSA operation error
140315110823584:error:0406C06E:rsa routines:RSA_padding_add_PKCS1_type_1:data too large for key size:rsa_pk1.c:73:
The text was updated successfully, but these errors were encountered:
@melvincarvalho - is this a WebID+RSA spec issue? Or an issue with the particular implementation on Gold? (If it's a spec issue, I want to make sure we also open it on solid/solid, so it doesn't get lost)
A typical RSA key 2048 bit cannot sign the nonces returned using WebID + RSA
PKCS1v15 uses 11 bytes padding and so can have a max message size of 256 - 11 = 245 bytes
Typically the host + nonce string to sign is of length greater than this.
Would it be possible to use a shorter nonce?
The text was updated successfully, but these errors were encountered: