Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/crypto/rijndael typo



details:   https://anonhg.NetBSD.org/src/rev/1cc49e8c8ab3
branches:  trunk
changeset: 551004:1cc49e8c8ab3
user:      itojun <itojun%NetBSD.org@localhost>
date:      Wed Aug 27 03:35:35 2003 +0000

description:
typo

diffstat:

 sys/crypto/rijndael/rijndael.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 21947f46f5a0 -r 1cc49e8c8ab3 sys/crypto/rijndael/rijndael.c
--- a/sys/crypto/rijndael/rijndael.c    Wed Aug 27 02:44:19 2003 +0000
+++ b/sys/crypto/rijndael/rijndael.c    Wed Aug 27 03:35:35 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rijndael.c,v 1.4 2003/08/27 02:44:19 itojun Exp $      */
+/*     $NetBSD: rijndael.c,v 1.5 2003/08/27 03:35:35 itojun Exp $      */
 
 /**             
  * rijndael-alg-fst.c 
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rijndael.c,v 1.4 2003/08/27 02:44:19 itojun Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rijndael.c,v 1.5 2003/08/27 03:35:35 itojun Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
@@ -53,7 +53,7 @@
 {
 
        if (!ctx->decrypt)
-               panic("rijndael_decrypt: decryption context is passed");
+               panic("rijndael_decrypt: encryption context is passed");
        rijndaelDecrypt(ctx->dk, ctx->Nr, src, dst);
 }
 



Home | Main Index | Thread Index | Old Index