case we want to modify it.
ticket: 2453
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16202
dc483132-0cff-0310-8789-
dd5450dbe970
+2004-03-22 Ken Raeburn <raeburn@mit.edu>
+
+ * pbkdf2.c (hmac1): Make a local copy of the supplied keyblock
+ structure, in case we want to modify it.
+
2004-03-17 Ken Raeburn <raeburn@mit.edu>
* prng.c (krb5int_prng_cleanup): Renamed from prng_cleanup.
char tmp[40];
size_t blocksize, hashsize;
krb5_error_code err;
+ krb5_keyblock k;
+ k = *key;
+ key = &k;
if (debug_hmac)
printk(" test key", key);
blocksize = h->blocksize;