Deleted Added
full compact
cipher.h (57430) cipher.h (57464)
1/*
2 *
3 * cipher.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Wed Apr 19 16:50:42 1995 ylo
11 *
1/*
2 *
3 * cipher.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Wed Apr 19 16:50:42 1995 ylo
11 *
12 * $FreeBSD: head/crypto/openssh/cipher.h 57464 2000-02-25 01:53:12Z green $
12 */
13
14/* RCSID("$Id: cipher.h,v 1.10 1999/11/24 19:53:46 markus Exp $"); */
15
16#ifndef CIPHER_H
17#define CIPHER_H
18
13 */
14
15/* RCSID("$Id: cipher.h,v 1.10 1999/11/24 19:53:46 markus Exp $"); */
16
17#ifndef CIPHER_H
18#define CIPHER_H
19
19#include
20#include
20#include <openssl/des.h>
21#include <openssl/blowfish.h>
21
22/* Cipher types. New types can be added, but old types should not be removed
23 for compatibility. The maximum allowed value is 31. */
24#define SSH_CIPHER_NOT_SET -1 /* None selected (invalid number). */
25#define SSH_CIPHER_NONE 0 /* no encryption */
26#define SSH_CIPHER_IDEA 1 /* IDEA CFB */
27#define SSH_CIPHER_DES 2 /* DES CBC */
28#define SSH_CIPHER_3DES 3 /* 3DES CBC */

--- 69 unchanged lines hidden ---
22
23/* Cipher types. New types can be added, but old types should not be removed
24 for compatibility. The maximum allowed value is 31. */
25#define SSH_CIPHER_NOT_SET -1 /* None selected (invalid number). */
26#define SSH_CIPHER_NONE 0 /* no encryption */
27#define SSH_CIPHER_IDEA 1 /* IDEA CFB */
28#define SSH_CIPHER_DES 2 /* DES CBC */
29#define SSH_CIPHER_3DES 3 /* 3DES CBC */

--- 69 unchanged lines hidden ---