2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 /* The rxkad security object. This contains packet processing routines that
11 * are prohibited from being exported. */
14 #include <afsconfig.h>
16 #include "afs/param.h"
18 #include <afs/param.h>
29 #include "netinet/in.h"
31 #include "afs/sysincludes.h"
36 #include <sys/types.h>
41 #include <netinet/in.h>
45 #include "private_data.h"
46 #define XPRT_RXKAD_CRYPT
49 rxkad_DecryptPacket(const struct rx_connection *conn,
50 const fc_KeySchedule * schedule,
51 const fc_InitializationVector * ivec, const int inlen,
52 struct rx_packet *packet)
55 struct rx_securityClass *obj;
56 struct rxkad_cprivate *tp; /* s & c have type at same offset */
62 obj = rx_SecurityObjectOf(conn);
63 tp = (struct rxkad_cprivate *)obj->privateData;
64 LOCK_RXKAD_STATS rxkad_stats.bytesDecrypted[rxkad_TypeIndex(tp->type)] +=
66 UNLOCK_RXKAD_STATS memcpy((void *)xor, (void *)ivec, sizeof(xor));
67 for (i = 0; len; i++) {
68 data = rx_data(packet, i, tlen);
71 tlen = MIN(len, tlen);
72 fc_cbc_encrypt(data, data, tlen, schedule, xor, DECRYPT);
75 /* Do this if packet checksums are ever enabled (below), but
76 * current version just passes zero
78 cksum = ntohl(rx_GetInt32(packet, 1));
84 rxkad_EncryptPacket(const struct rx_connection * conn,
85 const fc_KeySchedule * schedule,
86 const fc_InitializationVector * ivec, const int inlen,
87 struct rx_packet * packet)
90 struct rx_securityClass *obj;
91 struct rxkad_cprivate *tp; /* s & c have type at same offset */
97 obj = rx_SecurityObjectOf(conn);
98 tp = (struct rxkad_cprivate *)obj->privateData;
99 LOCK_RXKAD_STATS rxkad_stats.bytesEncrypted[rxkad_TypeIndex(tp->type)] +=
105 * * Future option to add cksum here, but for now we just put 0
107 rx_PutInt32(packet, 1 * sizeof(afs_int32), 0);
109 memcpy((void *)xor, (void *)ivec, sizeof(xor));
110 for (i = 0; len; i++) {
111 data = rx_data(packet, i, tlen);
114 tlen = MIN(len, tlen);
115 fc_cbc_encrypt(data, data, tlen, schedule, xor, ENCRYPT);