]> andersk Git - openssh.git/blobdiff - cipher.h
- markus@cvs.openbsd.org 2001/04/22 23:58:36
[openssh.git] / cipher.h
index 0223ace3fe919b2c3e6400190950148ae7c6e1b5..6d929aaff2a89bf821dd12e07153a3a3ea25da1b 100644 (file)
--- a/cipher.h
+++ b/cipher.h
@@ -32,7 +32,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-/* RCSID("$OpenBSD: cipher.h,v 1.23 2000/12/06 23:05:42 markus Exp $"); */
+/* RCSID("$OpenBSD: cipher.h,v 1.25 2000/12/19 23:17:56 markus Exp $"); */
 
 #ifndef CIPHER_H
 #define CIPHER_H
@@ -41,9 +41,7 @@
 #include <openssl/blowfish.h>
 #include <openssl/rc4.h>
 #include <openssl/cast.h>
-
 #include "rijndael.h"
-
 /*
  * Cipher types for SSH-1.  New types can be added, but old types should not
  * be removed for compatibility.  The maximum allowed value is 31.
@@ -86,9 +84,9 @@ struct CipherContext {
                        u_char iv[8];
                } cast;
                struct {
-                       u_char iv[16];
-                       rijndael_key enc;
-                       rijndael_key dec;
+                       u4byte iv[4];
+                       rijndael_ctx enc;
+                       rijndael_ctx dec;
                } rijndael;
                RC4_KEY rc4;
        }       u;
@@ -105,7 +103,7 @@ struct Cipher {
        void    (*decrypt)(CipherContext *, u_char *, const u_char *, u_int);
 };
 
-unsigned int cipher_mask_ssh1(int client);
+u_int cipher_mask_ssh1(int client);
 Cipher *cipher_by_name(const char *name);
 Cipher *cipher_by_number(int id);
 int cipher_number(const char *name);
This page took 0.049087 seconds and 4 git commands to generate.