Merge pull request #1733 from ejohnstown/des-iv

Fix DES IV value
This commit is contained in:
David Garske
2018-08-01 14:57:26 -07:00
committed by GitHub

View File

@ -49,7 +49,7 @@
enum {
DES_KEY_SIZE = 8, /* des */
DES3_KEY_SIZE = 24, /* 3 des ede */
DES_IV_SIZE = 16,
DES_IV_SIZE = 8, /* should be the same as DES_BLOCK_SIZE */
};