On 19 June 2016 at 01:18, Stian Soiland-Reyes wrote:
> I am not too keen to grow CryptoCipher to an abstract class (Java 8 or not)
> with additional methods that would not typically be implemented by
> implementing subclasses.
>
> The API of CC is quite low level, yes, but then adding higher level
I am not too keen to grow CryptoCipher to an abstract class (Java 8 or not)
with additional methods that would not typically be implemented by
implementing subclasses.
The API of CC is quite low level, yes, but then adding higher level helpers
there won't really help as it will be quite a confusin
I have been looking at creating examples for Crypto.
It occurred to me that a common use case is encryption/decryption of
small chunks of data that can readily be stored in a local byte array.
For such cases, there is no need to use both update() and doFinal().
Having to provide the input array o