mce: decryption size check
This commit is contained in:
parent
31ef38bfa7
commit
2436593054
|
@ -64,6 +64,8 @@ int pubkey::encrypt (const bvector& in, bvector&out, prng&rng)
|
|||
|
||||
int privkey::decrypt (const bvector&in, bvector&out)
|
||||
{
|
||||
if (in.size() != cipher_size() ) return 2;
|
||||
|
||||
//remove the P permutation
|
||||
bvector not_permuted;
|
||||
Pinv.permute (in, not_permuted);
|
||||
|
|
Loading…
Reference in a new issue