2 * Copyright (c) 2003 Markus Friedl. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #if OPENSSL_VERSION_NUMBER < 0x00907000L
27 RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $");
29 #include <openssl/evp.h>
34 #if OPENSSL_VERSION_NUMBER < 0x00906000L
38 #define RIJNDAEL_BLOCKSIZE 16
39 struct ssh_rijndael_ctx
42 u_char r_iv
[RIJNDAEL_BLOCKSIZE
];
45 const EVP_CIPHER
* evp_rijndael(void);
46 void ssh_rijndael_iv(EVP_CIPHER_CTX
*, int, u_char
*, u_int
);
49 ssh_rijndael_init(EVP_CIPHER_CTX
*ctx
, const u_char
*key
, const u_char
*iv
,
52 struct ssh_rijndael_ctx
*c
;
54 if ((c
= EVP_CIPHER_CTX_get_app_data(ctx
)) == NULL
) {
55 c
= xmalloc(sizeof(*c
));
56 EVP_CIPHER_CTX_set_app_data(ctx
, c
);
61 rijndael_set_key(&c
->r_ctx
, (u_char
*)key
,
62 8*EVP_CIPHER_CTX_key_length(ctx
), enc
);
65 memcpy(c
->r_iv
, iv
, RIJNDAEL_BLOCKSIZE
);
70 ssh_rijndael_cbc(EVP_CIPHER_CTX
*ctx
, u_char
*dest
, const u_char
*src
,
73 struct ssh_rijndael_ctx
*c
;
74 u_char buf
[RIJNDAEL_BLOCKSIZE
];
75 u_char
*cprev
, *cnow
, *plain
, *ivp
;
76 int i
, j
, blocks
= len
/ RIJNDAEL_BLOCKSIZE
;
80 if (len
% RIJNDAEL_BLOCKSIZE
)
81 fatal("ssh_rijndael_cbc: bad len %d", len
);
82 if ((c
= EVP_CIPHER_CTX_get_app_data(ctx
)) == NULL
) {
83 error("ssh_rijndael_cbc: no context");
88 plain
= (u_char
*)src
;
90 for (i
= 0; i
< blocks
; i
++, plain
+=RIJNDAEL_BLOCKSIZE
,
91 cnow
+=RIJNDAEL_BLOCKSIZE
) {
92 for (j
= 0; j
< RIJNDAEL_BLOCKSIZE
; j
++)
93 buf
[j
] = plain
[j
] ^ cprev
[j
];
94 rijndael_encrypt(&c
->r_ctx
, buf
, cnow
);
97 memcpy(c
->r_iv
, cprev
, RIJNDAEL_BLOCKSIZE
);
99 cnow
= (u_char
*) (src
+len
-RIJNDAEL_BLOCKSIZE
);
100 plain
= dest
+len
-RIJNDAEL_BLOCKSIZE
;
102 memcpy(buf
, cnow
, RIJNDAEL_BLOCKSIZE
);
103 for (i
= blocks
; i
> 0; i
--, cnow
-=RIJNDAEL_BLOCKSIZE
,
104 plain
-=RIJNDAEL_BLOCKSIZE
) {
105 rijndael_decrypt(&c
->r_ctx
, cnow
, plain
);
106 ivp
= (i
== 1) ? c
->r_iv
: cnow
-RIJNDAEL_BLOCKSIZE
;
107 for (j
= 0; j
< RIJNDAEL_BLOCKSIZE
; j
++)
110 memcpy(c
->r_iv
, buf
, RIJNDAEL_BLOCKSIZE
);
116 ssh_rijndael_cleanup(EVP_CIPHER_CTX
*ctx
)
118 struct ssh_rijndael_ctx
*c
;
120 if ((c
= EVP_CIPHER_CTX_get_app_data(ctx
)) != NULL
) {
121 memset(c
, 0, sizeof(*c
));
123 EVP_CIPHER_CTX_set_app_data(ctx
, NULL
);
129 ssh_rijndael_iv(EVP_CIPHER_CTX
*evp
, int doset
, u_char
* iv
, u_int len
)
131 struct ssh_rijndael_ctx
*c
;
133 if ((c
= EVP_CIPHER_CTX_get_app_data(evp
)) == NULL
)
134 fatal("ssh_rijndael_iv: no context");
136 memcpy(c
->r_iv
, iv
, len
);
138 memcpy(iv
, c
->r_iv
, len
);
144 static EVP_CIPHER rijndal_cbc
;
146 memset(&rijndal_cbc
, 0, sizeof(EVP_CIPHER
));
147 rijndal_cbc
.nid
= NID_undef
;
148 rijndal_cbc
.block_size
= RIJNDAEL_BLOCKSIZE
;
149 rijndal_cbc
.iv_len
= RIJNDAEL_BLOCKSIZE
;
150 rijndal_cbc
.key_len
= 16;
151 rijndal_cbc
.init
= ssh_rijndael_init
;
152 rijndal_cbc
.cleanup
= ssh_rijndael_cleanup
;
153 rijndal_cbc
.do_cipher
= ssh_rijndael_cbc
;
155 rijndal_cbc
.flags
= EVP_CIPH_CBC_MODE
| EVP_CIPH_VARIABLE_LENGTH
|
156 EVP_CIPH_ALWAYS_CALL_INIT
| EVP_CIPH_CUSTOM_IV
;
158 return (&rijndal_cbc
);
160 #endif /* OPENSSL_VERSION_NUMBER */