Subject: | don't need ->finish if padding-method = 'none' |
For symmetric ciphers, if the padding method is 'none',
calling finish() should never be necessary,
since we're required to send multiples of blocksize on encrypt
and no unpadding is done on decrypt,
so both encrypt and decrypt are guaranteed to return with empty buffers,
so there should be nothing for finish() to do.