mce: decryption size check

This commit is contained in:
Mirek Kratochvil 2012-05-22 22:06:50 +02:00
parent 31ef38bfa7
commit 2436593054

View file

@ -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);