Module Name: src Committed By: drochner Date: Tue May 24 18:52:52 UTC 2011
Modified Files: src/sys/opencrypto: cryptosoft.c cryptosoft_xform.c Log Message: Change the way the IV is generated for AES-CTR: use a simple counter instead of arc4random(). AES-CTR is sensitive against IV recurrence (with the same key / nonce), and a random number doesn't give that guarantee. This needs a little API change in cryptosoft -- I've suggested it to Open/FreeBSD, might change it depending on feedback. Thanks to Steven Bellovin for hints. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/opencrypto/cryptosoft.c cvs rdiff -u -r1.19 -r1.20 src/sys/opencrypto/cryptosoft_xform.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.