]> andersk Git - openssh.git/blame - cipher.h
- OpenBSD CVS update
[openssh.git] / cipher.h
CommitLineData
8efc0c15 1/*
5260325f 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 */
8efc0c15 13
14/* RCSID("$Id$"); */
15
16#ifndef CIPHER_H
17#define CIPHER_H
18
4d195447 19#include "config.h"
20
5881cd60 21#ifdef HAVE_OPENSSL
8efc0c15 22#include <openssl/des.h>
23#include <openssl/blowfish.h>
5881cd60 24#endif
25#ifdef HAVE_SSL
26#include <ssl/des.h>
27#include <ssl/blowfish.h>
28#endif
8efc0c15 29
30/* Cipher types. New types can be added, but old types should not be removed
31 for compatibility. The maximum allowed value is 31. */
5260325f 32#define SSH_CIPHER_NOT_SET -1 /* None selected (invalid number). */
33#define SSH_CIPHER_NONE 0 /* no encryption */
34#define SSH_CIPHER_IDEA 1 /* IDEA CFB */
35#define SSH_CIPHER_DES 2 /* DES CBC */
36#define SSH_CIPHER_3DES 3 /* 3DES CBC */
37#define SSH_CIPHER_BROKEN_TSS 4 /* TRI's Simple Stream encryption CBC */
38#define SSH_CIPHER_BROKEN_RC4 5 /* Alleged RC4 */
8efc0c15 39#define SSH_CIPHER_BLOWFISH 6
40
41typedef struct {
5260325f 42 unsigned int type;
43 union {
44 struct {
45 des_key_schedule key1;
46 des_key_schedule key2;
47 des_cblock iv2;
48 des_key_schedule key3;
49 des_cblock iv3;
50 } des3;
51 struct {
52 struct bf_key_st key;
53 unsigned char iv[8];
54 } bf;
55 } u;
56} CipherContext;
aa3378df 57/*
58 * Returns a bit mask indicating which ciphers are supported by this
59 * implementation. The bit mask has the corresponding bit set of each
60 * supported cipher.
61 */
8efc0c15 62unsigned int cipher_mask();
63
64/* Returns the name of the cipher. */
65const char *cipher_name(int cipher);
66
aa3378df 67/*
68 * Parses the name of the cipher. Returns the number of the corresponding
69 * cipher, or -1 on error.
70 */
5260325f 71int cipher_number(const char *name);
8efc0c15 72
aa3378df 73/*
74 * Selects the cipher to use and sets the key. If for_encryption is true,
75 * the key is setup for encryption; otherwise it is setup for decryption.
76 */
5260325f 77void
78cipher_set_key(CipherContext * context, int cipher,
79 const unsigned char *key, int keylen, int for_encryption);
8efc0c15 80
aa3378df 81/*
82 * Sets key for the cipher by computing the MD5 checksum of the passphrase,
83 * and using the resulting 16 bytes as the key.
84 */
5260325f 85void
86cipher_set_key_string(CipherContext * context, int cipher,
87 const char *passphrase, int for_encryption);
8efc0c15 88
89/* Encrypts data using the cipher. */
5260325f 90void
91cipher_encrypt(CipherContext * context, unsigned char *dest,
92 const unsigned char *src, unsigned int len);
8efc0c15 93
94/* Decrypts data using the cipher. */
5260325f 95void
96cipher_decrypt(CipherContext * context, unsigned char *dest,
97 const unsigned char *src, unsigned int len);
8efc0c15 98
5260325f 99#endif /* CIPHER_H */
This page took 0.337012 seconds and 5 git commands to generate.