Aesget segfaults when it is run without a key size. In
order to make it work more like aescrypt, the attached
patch initializes keysize to 128.
There is also a change to the keysize option test.
Thanks for making aescrypt available.
Dennis
dmarti@gmail.com
Logged In: NO
192c192
< int keysize, op;
---
> int keysize=128, op;
210c210
< if ((keysize != 128) && (keysize != 192) & (keysize
!= 256)) {
---
> if ((keysize != 128) && (keysize != 192) && (keysize
!= 256)) {