Change export warning notice from "is assumed to require an export license"
[krb5.git] / src / lib / krb5 / krb / copy_key.c
1 /*
2  * $Source$
3  * $Author$
4  *
5  * Copyright 1990,1991 by the Massachusetts Institute of Technology.
6  * All Rights Reserved.
7  *
8  * Export of this software from the United States of America may
9  *   require a specific license from the United States Government.
10  *   It is the responsibility of any person or organization contemplating
11  *   export to obtain such a license before exporting.
12  * 
13  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
14  * distribute this software and its documentation for any purpose and
15  * without fee is hereby granted, provided that the above copyright
16  * notice appear in all copies and that both that copyright notice and
17  * this permission notice appear in supporting documentation, and that
18  * the name of M.I.T. not be used in advertising or publicity pertaining
19  * to distribution of the software without specific, written prior
20  * permission.  M.I.T. makes no representations about the suitability of
21  * this software for any purpose.  It is provided "as is" without express
22  * or implied warranty.
23  * 
24  *
25  * krb5_copy_keyblock()
26  */
27
28 #if !defined(lint) && !defined(SABER)
29 static char rcsid_copy_key_c[] =
30 "$Id$";
31 #endif  /* !lint & !SABER */
32
33 #include <krb5/krb5.h>
34 #include <krb5/ext-proto.h>
35
36 /*
37  * Copy a keyblock, including alloc'ed storage.
38  */
39 krb5_error_code
40 krb5_copy_keyblock(from, to)
41 const krb5_keyblock *from;
42 krb5_keyblock **to;
43 {
44         krb5_keyblock   *new_key;
45
46         if (!(new_key = (krb5_keyblock *) malloc(sizeof(krb5_keyblock))))
47                 return ENOMEM;
48         *new_key = *from;
49         if (!(new_key->contents = (krb5_octet *)malloc(new_key->length))) {
50                 xfree(new_key);
51                 return(ENOMEM);
52         }
53         memcpy((char *)new_key->contents, (char *)from->contents,
54                new_key->length);
55         *to = new_key;
56         return 0;
57 }