From ae5ad7d5ad644bf9102d720b2279da3359b70d2d Mon Sep 17 00:00:00 2001 From: John Carr Date: Fri, 6 Dec 1991 13:18:16 +0000 Subject: Store the length field of the encrypted key in network byte order git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2195 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/kdb/decrypt_key.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/lib/kdb/decrypt_key.c') diff --git a/src/lib/kdb/decrypt_key.c b/src/lib/kdb/decrypt_key.c index d99156af42..811727b355 100644 --- a/src/lib/kdb/decrypt_key.c +++ b/src/lib/kdb/decrypt_key.c @@ -47,11 +47,11 @@ krb5_encrypt_block *eblock; const krb5_encrypted_keyblock *in; krb5_keyblock *out; { + int length; krb5_error_code retval; /* the encrypted version is stored as the unencrypted key length - (in host byte order), followed by the encrypted key. - */ + (4 bytes, MSB first) followed by the encrypted key. */ out->keytype = in->keytype; out->length = krb5_encrypt_size(in->length-sizeof(in->length), eblock->crypto_entry); @@ -62,7 +62,11 @@ krb5_keyblock *out; return ENOMEM; } /* copy out the real length count */ - memcpy((char *)&out->length, (char *)in->contents, sizeof(out->length)); + length = ((unsigned char *)in->contents)[0] << 24; + length += ((unsigned char *)in->contents)[1] << 16; + length += ((unsigned char *)in->contents)[2] << 8; + length += ((unsigned char *)in->contents)[3]; + out->length = length; /* remember the contents of the encrypted version has a sizeof(in->length) integer length of the real embedded key, followed by the -- cgit