2 * Copyright (c) 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <krb5-types.h> /* should really be stdint.h */
35 #include <hcrypto/evp.h>
45 /* key and initial vector */
47 "\xaa\xbb\x45\xd4\xaa\xbb\x45\xd4"
48 "\xaa\xbb\x45\xd4\xaa\xbb\x45\xd4";
49 static char ivec
[16] =
50 "\xaa\xbb\x45\xd4\xaa\xbb\x45\xd4"
51 "\xaa\xbb\x45\xd4\xaa\xbb\x45\xd4";
54 usage(int exit_code
) __attribute__((noreturn
));
59 printf("usage: %s in out\n", getprogname());
65 main(int argc
, char **argv
)
68 const char *ifn
= NULL
, *ofn
= NULL
;
72 size_t block_size
= 0;
73 const EVP_CIPHER
*c
= EVP_aes_128_cbc();
80 if (strcmp(argv
[1], "--version") == 0) {
84 if (strcmp(argv
[1], "--help") == 0)
87 } else if (argc
== 4) {
88 block_size
= atoi(argv
[1]);
90 errx(1, "invalid blocksize %s", argv
[1]);
98 errx(1, "failed to open input file");
99 out
= fopen(ofn
, "w+");
101 errx(1, "failed to open output file");
103 /* Check that key and ivec are long enough */
104 assert(EVP_CIPHER_key_length(c
) <= sizeof(key
));
105 assert(EVP_CIPHER_iv_length(c
) <= sizeof(ivec
));
108 * Allocate buffer, the output buffer is at least
109 * EVP_CIPHER_block_size() longer
111 ibuf
= malloc(block_size
);
112 obuf
= malloc(block_size
+ EVP_CIPHER_block_size(c
));
115 * Init the memory used for EVP_CIPHER_CTX and set the key and
118 EVP_CIPHER_CTX_init(&ctx
);
119 EVP_CipherInit_ex(&ctx
, c
, NULL
, key
, ivec
, encryptp
);
122 while ((ilen
= fread(ibuf
, 1, block_size
, in
)) > 0) {
123 /* encrypto/decrypt */
124 ret
= EVP_CipherUpdate(&ctx
, obuf
, &olen
, ibuf
, ilen
);
126 EVP_CIPHER_CTX_cleanup(&ctx
);
127 errx(1, "EVP_CipherUpdate failed");
129 /* write out to output file */
130 fwrite(obuf
, 1, olen
, out
);
135 /* clear up any last bytes left in the output buffer */
136 ret
= EVP_CipherFinal_ex(&ctx
, obuf
, &olen
);
137 EVP_CIPHER_CTX_cleanup(&ctx
);
139 errx(1, "EVP_CipherFinal_ex failed");
141 /* write the last bytes out and close */
142 fwrite(obuf
, 1, olen
, out
);