svn commit: r303650 - head/sys/opencrypto

Conrad E. Meyer cem at FreeBSD.org
Mon Aug 1 22:57:04 UTC 2016


Author: cem
Date: Mon Aug  1 22:57:03 2016
New Revision: 303650
URL: https://svnweb.freebsd.org/changeset/base/303650

Log:
  opencrypto AES-ICM: Fix heap corruption typo
  
  This error looks like it was a simple copy-paste typo in the original commit
  for this code (r275732).
  
  PR:		204009
  Reported by:	Chang-Hsien Tsai <luke.tw AT gmail.com>
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/opencrypto/xform_aes_icm.c

Modified: head/sys/opencrypto/xform_aes_icm.c
==============================================================================
--- head/sys/opencrypto/xform_aes_icm.c	Mon Aug  1 22:53:28 2016	(r303649)
+++ head/sys/opencrypto/xform_aes_icm.c	Mon Aug  1 22:57:03 2016	(r303650)
@@ -65,7 +65,7 @@ struct enc_xform enc_xform_aes_icm = {
 	aes_icm_crypt,
 	aes_icm_crypt,
 	aes_icm_setkey,
-	rijndael128_zerokey,
+	aes_icm_zerokey,
 	aes_icm_reinit,
 };
 


More information about the svn-src-all mailing list