From 8719be1d21277eccb821663fde741bc4ad9087b0 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Thu, 14 Mar 1991 11:28:41 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1903 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/krb5/krb/cp_key_cnt.c | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/lib/krb5/krb/cp_key_cnt.c diff --git a/src/lib/krb5/krb/cp_key_cnt.c b/src/lib/krb5/krb/cp_key_cnt.c new file mode 100644 index 000000000..f6bad03fa --- /dev/null +++ b/src/lib/krb5/krb/cp_key_cnt.c @@ -0,0 +1,36 @@ +/* + * $Source$ + * $Author$ + * + * Copyright 1991 by the Massachusetts Institute of Technology. + * All Rights Reserved. + * + * For copying and distribution information, please see the file + * . + * + * krb5_copy_keyblock() + */ + +#if !defined(lint) && !defined(SABER) +static char rcsid_copy_key_cnt_c[] = +"$Id$"; +#endif /* !lint & !SABER */ + +#include +#include + +/* + * Copy a keyblock, including alloc'ed storage. + */ +krb5_error_code +krb5_copy_keyblock_contents(from, to) +const krb5_keyblock *from; +krb5_keyblock *to; +{ + *to = *from; + to->contents = (krb5_octet *)malloc(to->length); + if (!to->contents) + return ENOMEM; + memcpy((char *)to->contents, (char *)from->contents, to->length); + return 0; +} -- 2.26.2