tags:

views:

335

answers:

1

I'm currently using Crypto++ to generate a signature for a block of data. I expected the signature to be 20 bytes ( SHA 1 Hash) , as my understanding was that the signature is just an encrypted hash. But when checking with maxsignaturelength and signature length , it seems that it is 192 bytes. Is it normal?

+1  A: 

The size of the signature is the size of the RSA modulus in bytes.

GregS