summaryrefslogtreecommitdiff
path: root/cipher.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-05 12:42:17 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-05 12:42:17 +0000
commitef4eea9badfb65f05ac24f786b710cc3f27f0e43 (patch)
treef54abef181ccd6ad5285a5c16b4c159d8b74e932 /cipher.c
parentd2ddda4efab29fd8663757634773fa10e557e0f3 (diff)
- stevesk@cvs.openbsd.org 2001/02/04 08:32:27
[many files; did this manually to our top-level source dir] unexpand and remove end-of-line whitespace; ok markus@
Diffstat (limited to 'cipher.c')
-rw-r--r--cipher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher.c b/cipher.c
index c867216cc..b1740ecf9 100644
--- a/cipher.c
+++ b/cipher.c
@@ -266,7 +266,7 @@ cast_setkey(CipherContext *cc, const u_char *key, u_int keylen)
266void 266void
267cast_setiv(CipherContext *cc, const u_char *iv, u_int ivlen) 267cast_setiv(CipherContext *cc, const u_char *iv, u_int ivlen)
268{ 268{
269 if (iv == NULL) 269 if (iv == NULL)
270 fatal("no IV for %s.", cc->cipher->name); 270 fatal("no IV for %s.", cc->cipher->name);
271 memcpy(cc->u.cast.iv, (char *)iv, 8); 271 memcpy(cc->u.cast.iv, (char *)iv, 8);
272} 272}
@@ -295,7 +295,7 @@ rijndael_setkey(CipherContext *cc, const u_char *key, u_int keylen)
295void 295void
296rijndael_setiv(CipherContext *cc, const u_char *iv, u_int ivlen) 296rijndael_setiv(CipherContext *cc, const u_char *iv, u_int ivlen)
297{ 297{
298 if (iv == NULL) 298 if (iv == NULL)
299 fatal("no IV for %s.", cc->cipher->name); 299 fatal("no IV for %s.", cc->cipher->name);
300 memcpy((u_char *)cc->u.rijndael.iv, iv, RIJNDAEL_BLOCKSIZE); 300 memcpy((u_char *)cc->u.rijndael.iv, iv, RIJNDAEL_BLOCKSIZE);
301} 301}
@@ -415,7 +415,7 @@ Cipher ciphers[] = {
415 SSH_CIPHER_SSH2, 16, 32, 415 SSH_CIPHER_SSH2, 16, 32,
416 rijndael_setkey, rijndael_setiv, 416 rijndael_setkey, rijndael_setiv,
417 rijndael_cbc_encrypt, rijndael_cbc_decrypt }, 417 rijndael_cbc_encrypt, rijndael_cbc_decrypt },
418 { NULL, SSH_CIPHER_ILLEGAL, 0, 0, NULL, NULL, NULL, NULL } 418 { NULL, SSH_CIPHER_ILLEGAL, 0, 0, NULL, NULL, NULL, NULL }
419}; 419};
420 420
421/*--*/ 421/*--*/