d21bd93bee6a703f0f0c81aaf62709efe46bc78c
[krb5.git] / src / lib / crypto / des / process_ky.c
1 /*
2  * lib/crypto/des/process_ky.c
3  *
4  * Copyright 1990 by the Massachusetts Institute of Technology.
5  * All Rights Reserved.
6  *
7  * Export of this software from the United States of America may
8  *   require a specific license from the United States Government.
9  *   It is the responsibility of any person or organization contemplating
10  *   export to obtain such a license before exporting.
11  * 
12  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
13  * distribute this software and its documentation for any purpose and
14  * without fee is hereby granted, provided that the above copyright
15  * notice appear in all copies and that both that copyright notice and
16  * this permission notice appear in supporting documentation, and that
17  * the name of M.I.T. not be used in advertising or publicity pertaining
18  * to distribution of the software without specific, written prior
19  * permission.  M.I.T. makes no representations about the suitability of
20  * this software for any purpose.  It is provided "as is" without express
21  * or implied warranty.
22  */
23
24 #include "k5-int.h"
25 #include "des_int.h"
26
27 /*
28         does any necessary key preprocessing (such as computing key
29                 schedules for DES).
30         eblock->crypto_entry must be set by the caller; the other elements
31         of eblock are to be assigned by this function.
32         [in particular, eblock->key must be set by this function if the key
33         is needed in raw form by the encryption routine]
34
35         The caller may not move or reallocate "keyblock" before calling
36         finish_key on "eblock"
37
38         returns: errors
39  */
40
41 krb5_error_code INTERFACE
42 mit_des_process_key (eblock, keyblock)
43     krb5_encrypt_block * eblock;
44     const krb5_keyblock * keyblock;
45 {
46     struct mit_des_ks_struct       *schedule;      /* pointer to key schedules */
47     
48     if (keyblock->length != sizeof (mit_des_cblock))
49         return KRB5_BAD_KEYSIZE;
50
51     if ( !(schedule = (struct mit_des_ks_struct *) malloc(sizeof(mit_des_key_schedule))) )
52         return ENOMEM;
53 #define cleanup() { free( (char *) schedule); }
54
55     switch (mit_des_key_sched (keyblock->contents, schedule)) {
56     case -1:
57         cleanup();
58         return KRB5DES_BAD_KEYPAR;
59
60     case -2:
61         cleanup();
62         return KRB5DES_WEAK_KEY;
63
64     default:
65         eblock->key = (krb5_keyblock *) keyblock;
66         eblock->priv = (krb5_pointer) schedule;
67         return 0;
68     }
69 }