From 8719be1d21277eccb821663fde741bc4ad9087b0 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Thu, 14 Mar 1991 11:28:41 +0000 Subject: *** 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 (limited to 'src') 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 0000000..f6bad03 --- /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; +} -- cgit v1.1