From: Theodore Tso <tytso@mit.edu> Date: Tue, 18 Dec 1990 17:33:25 +0000 (+0000) Subject: Initial revision X-Git-Tag: krb5-1.0-alpha3~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=db1fd0bc319dd2868df0aca8565aba0ddfb51090;p=krb5.git Initial revision git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1561 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/krb/copy_cksum.c b/src/lib/krb5/krb/copy_cksum.c new file mode 100644 index 000000000..f86a9651f --- /dev/null +++ b/src/lib/krb5/krb/copy_cksum.c @@ -0,0 +1,45 @@ +/* + * $Source$ + * $Author$ + * + * Copyright 1990 by the Massachusetts Institute of Technology. + * + * For copying and distribution information, please see the file + * <krb5/copyright.h>. + * + * krb5_copy_authenticator() + */ + +#if !defined(lint) && !defined(SABER) +static char rcsid_copy_checksum_c[] = +"$Id$"; +#endif /* !lint & !SABER */ + +#include <krb5/copyright.h> +#include <krb5/krb5.h> + +#include <krb5/ext-proto.h> + +static krb5_error_code +krb5_copy_checksum(ckfrom, ckto) +const krb5_authenticator *ckfrom; +krb5_authenticator **ckto; +{ + krb5_error_code retval; + krb5_checksum *tempto; + + if (!(tempto = (krb5_checksum *)malloc(sizeof(*tempto)))) + return ENOMEM; + *tempto = *ckfrom; + + if (!(tempto->contents = + (krb5_octet *)malloc(tempto->length))) { + xfree(tempto); + return ENOMEM; + } + memcpy((char *) tempto->contents, (char *) ckfrom->contents, + ckfrom->length); + + *ckto = tempto; + return 0; +}