correct binary key material handling. sync with kame

This commit is contained in:
itojun 2001-05-27 01:40:16 +00:00
parent c77ddb45b8
commit 78458be84d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rijndael-api-fst.c,v 1.5 2001/03/02 15:42:39 itojun Exp $ */
/* $NetBSD: rijndael-api-fst.c,v 1.6 2001/05/27 01:40:16 itojun Exp $ */
/* $KAME: rijndael-api-fst.c,v 1.8 2001/03/02 05:53:05 itojun Exp $ */
/*
@ -49,7 +49,7 @@ int rijndael_makeKey(keyInstance *key, BYTE direction, int keyLen, char *keyMate
}
if (keyMaterial != NULL) {
strncpy(key->keyMaterial, keyMaterial, keyLen/4);
memcpy(key->keyMaterial, keyMaterial, keyLen/8);
}
key->ROUNDS = keyLen/32 + 6;