14fcbc9cb4065364af2c5d6d218ae27d3749fd61
[silc.git] / lib / silccrypt / silccipher.h
1 /*
2
3   silccipher.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef SILCCIPHER_H
22 #define SILCCIPHER_H
23
24 /* 
25    SILC Cipher object.
26
27    Default SILC cipher object to represent any cipher. The function
28    pointers are the stub functions for each implemented cipher. Following
29    short description of the fields:
30
31    char *name
32
33        Logical name of the cipher.
34
35    uint32 block_len
36
37        Block size of the cipher.
38
39    uint32 key_len
40
41        Length of the key of the cipher (in bits).
42
43 */
44 typedef struct {
45   char *name;
46   uint32 block_len;
47   uint32 key_len;
48
49   int (*set_key)(void *, const unsigned char *, uint32);
50   int (*set_key_with_string)(void *, const unsigned char *, uint32);
51   int (*encrypt)(void *, const unsigned char *, unsigned char *,
52                  uint32, unsigned char *);
53   int (*decrypt)(void *, const unsigned char *, unsigned char *, 
54                  uint32, unsigned char *);
55   uint32 (*context_len)();
56 } SilcCipherObject;
57
58 #define SILC_CIPHER_MAX_IV_SIZE 16
59
60 /* The main SilcCipher structure. Use SilcCipher instead of SilcCipherStruct.
61    Also remember that SilcCipher is a pointer. */
62 typedef struct SilcCipherStruct {
63   SilcCipherObject *cipher;
64   void *context;
65   unsigned char iv[SILC_CIPHER_MAX_IV_SIZE];
66
67   void (*set_iv)(struct SilcCipherStruct *, const unsigned char *);
68   void (*get_iv)(struct SilcCipherStruct *, unsigned char *);
69   uint32 (*get_key_len)(struct SilcCipherStruct *);
70   uint32 (*get_block_len)(struct SilcCipherStruct *);
71 } *SilcCipher;
72
73 /* List of all registered ciphers. */
74 extern struct SilcCipherListStruct *silc_cipher_list;
75
76 /* Marks for all ciphers in silc. This can be used in silc_cipher_unregister
77    to unregister all ciphers at once. */
78 #define SILC_ALL_CIPHERS ((SilcCipherObject *)1)
79
80 /* Macros */
81
82 /* Function names in SILC Crypto modules. The name of the cipher
83    is appended into these names and used to the get correct symbol out
84    of the module. All SILC Crypto API compliant modules must support
85    these function names (use macros below to assure this). */
86 #define SILC_CIPHER_SIM_SET_KEY "set_key"
87 #define SILC_CIPHER_SIM_SET_KEY_WITH_STRING "set_key_with_string"
88 #define SILC_CIPHER_SIM_ENCRYPT_CBC "encrypt_cbc"
89 #define SILC_CIPHER_SIM_DECRYPT_CBC "decrypt_cbc"
90 #define SILC_CIPHER_SIM_CONTEXT_LEN "context_len"
91
92 /* These macros can be used to implement the SILC Crypto API and to avoid
93    errors in the API these macros should be used always. */
94 #define SILC_CIPHER_API_SET_KEY(cipher)                 \
95 int silc_##cipher##_set_key(void *context,              \
96                             const unsigned char *key,   \
97                             uint32 keylen)
98 #define SILC_CIPHER_API_SET_KEY_WITH_STRING(cipher)                     \
99 int silc_##cipher##_set_key_with_string(void *context,                  \
100                                         const unsigned char *string,    \
101                                         uint32 stringlen)
102 #define SILC_CIPHER_API_ENCRYPT_CBC(cipher)                     \
103 int silc_##cipher##_encrypt_cbc(void *context,                  \
104                                 const unsigned char *src,       \
105                                 unsigned char *dst,             \
106                                 uint32 len,             \
107                                 unsigned char *iv)
108 #define SILC_CIPHER_API_DECRYPT_CBC(cipher)                     \
109 int silc_##cipher##_decrypt_cbc(void *context,                  \
110                                 const unsigned char *src,       \
111                                 unsigned char *dst,             \
112                                 uint32 len,             \
113                                 unsigned char *iv)
114 #define SILC_CIPHER_API_CONTEXT_LEN(cipher)                     \
115 uint32 silc_##cipher##_context_len()
116
117 /* Prototypes */
118 int silc_cipher_register(SilcCipherObject *cipher);
119 int silc_cipher_unregister(SilcCipherObject *cipher);
120 int silc_cipher_alloc(const unsigned char *name, SilcCipher *new_cipher);
121 void silc_cipher_free(SilcCipher cipher);
122 int silc_cipher_is_supported(const unsigned char *name);
123 char *silc_cipher_get_supported();
124 int silc_cipher_encrypt(SilcCipher cipher, const unsigned char *src,
125                         unsigned char *dst, uint32 len, 
126                         unsigned char *iv);
127 int silc_cipher_decrypt(SilcCipher cipher, const unsigned char *src,
128                         unsigned char *dst, uint32 len, 
129                         unsigned char *iv);
130 int silc_cipher_set_key(SilcCipher cipher, const unsigned char *key,
131                         uint32 keylen);
132 void silc_cipher_set_iv(SilcCipher cipher, const unsigned char *iv);
133 void silc_cipher_get_iv(SilcCipher cipher, unsigned char *iv);
134 uint32 silc_cipher_get_key_len(SilcCipher cipher);
135 uint32 silc_cipher_get_block_len(SilcCipher cipher);
136
137 #endif