pidgin 2.14.14dev
cipher.h
Go to the documentation of this file.
1
7/* purple
8 *
9 * Purple is the legal property of its developers, whose names are too numerous
10 * to list here. Please refer to the COPYRIGHT file distributed with this
11 * source distribution.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
26 */
27#ifndef PURPLE_CIPHER_H
28#define PURPLE_CIPHER_H
29
30#include <glib.h>
31#include <string.h>
32
33#define PURPLE_CIPHER(obj) ((PurpleCipher *)(obj))
34#define PURPLE_CIPHER_OPS(obj) ((PurpleCipherOps *)(obj))
35#define PURPLE_CIPHER_CONTEXT(obj) ((PurpleCipherContext *)(obj))
37typedef struct _PurpleCipher PurpleCipher;
39typedef struct _PurpleCipherContext PurpleCipherContext;
45 PURPLE_CIPHER_BATCH_MODE_ECB,
46 PURPLE_CIPHER_BATCH_MODE_CBC
48
52typedef enum _PurpleCipherCaps {
73
79 void (*set_option)(PurpleCipherContext *context, const gchar *name, void *value);
80
82 void *(*get_option)(PurpleCipherContext *context, const gchar *name);
83
85 void (*init)(PurpleCipherContext *context, void *extra);
86
88 void (*reset)(PurpleCipherContext *context, void *extra);
89
91 void (*uninit)(PurpleCipherContext *context);
92
94 void (*set_iv)(PurpleCipherContext *context, guchar *iv, size_t len);
95
97 void (*append)(PurpleCipherContext *context, const guchar *data, size_t len);
98
100 gboolean (*digest)(PurpleCipherContext *context, size_t in_len, guchar digest[], size_t *out_len);
101
103 int (*encrypt)(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen);
104
106 int (*decrypt)(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen);
107
109 void (*set_salt)(PurpleCipherContext *context, guchar *salt);
110
113
115 void (*set_key)(PurpleCipherContext *context, const guchar *key);
116
119
122
125
128
130 void (*set_key_with_len)(PurpleCipherContext *context, const guchar *key, size_t len);
131};
132
133G_BEGIN_DECLS
134
135/*****************************************************************************/
137/*****************************************************************************/
148
157
170gboolean purple_cipher_digest_region(const gchar *name, const guchar *data, size_t data_len, size_t in_len, guchar digest[], size_t *out_len);
171
173/******************************************************************************/
175/******************************************************************************/
186
196
205
213
215/******************************************************************************/
217/******************************************************************************/
226
231
236
238/******************************************************************************/
240/******************************************************************************/
250void purple_cipher_context_set_option(PurpleCipherContext *context, const gchar *name, gpointer value);
251
259gpointer purple_cipher_context_get_option(PurpleCipherContext *context, const gchar *name);
260
270
280
289
296
305void purple_cipher_context_set_iv(PurpleCipherContext *context, guchar *iv, size_t len);
306
314void purple_cipher_context_append(PurpleCipherContext *context, const guchar *data, size_t len);
315
324gboolean purple_cipher_context_digest(PurpleCipherContext *context, size_t in_len, guchar digest[], size_t *out_len);
325
334gboolean purple_cipher_context_digest_to_str(PurpleCipherContext *context, size_t in_len, gchar digest_s[], size_t *out_len);
335
347gint purple_cipher_context_encrypt(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen);
348
360gint purple_cipher_context_decrypt(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen);
361
369
378
385void purple_cipher_context_set_key(PurpleCipherContext *context, const guchar *key);
386
395
404
413
422
431void purple_cipher_context_set_key_with_len(PurpleCipherContext *context, const guchar *key, size_t len);
432
440
449
451/*****************************************************************************/
453/*****************************************************************************/
471 const gchar *algorithm, const gchar *username,
472 const gchar *realm, const gchar *password,
473 const gchar *nonce, const gchar *client_nonce);
474
492 const gchar *algorithm, const gchar *method,
493 const gchar *digest_uri, const gchar *qop,
494 const gchar *entity, const gchar *nonce,
495 const gchar *nonce_count, const gchar *client_nonce,
496 const gchar *session_key);
497
500G_END_DECLS
501
502#endif /* PURPLE_CIPHER_H */
enum _PurpleCipherBatchMode PurpleCipherBatchMode
Modes for batch encrypters.
_PurpleCipherBatchMode
Modes for batch encrypters.
Definition: cipher.h:44
GList * purple_ciphers_get_ciphers(void)
Gets the list of ciphers.
gboolean purple_cipher_digest_region(const gchar *name, const guchar *data, size_t data_len, size_t in_len, guchar digest[], size_t *out_len)
Gets a digest from a cipher.
void purple_cipher_context_set_batch_mode(PurpleCipherContext *context, PurpleCipherBatchMode mode)
Sets the batch mode of a context.
gpointer purple_cipher_context_get_option(PurpleCipherContext *context, const gchar *name)
Gets the vale of an option on a cipher context.
struct _PurpleCipherContext PurpleCipherContext
A context for a PurpleCipher
Definition: cipher.h:39
gint purple_cipher_context_decrypt(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen)
Decrypts data using the context.
void purple_cipher_context_set_data(PurpleCipherContext *context, gpointer data)
Sets the cipher data for a context.
PurpleCipher * purple_ciphers_find_cipher(const gchar *name)
Finds a cipher by it's name.
gboolean purple_ciphers_unregister_cipher(PurpleCipher *cipher)
Unregisters a cipher.
size_t purple_cipher_context_get_key_size(PurpleCipherContext *context)
Gets the key size for a context.
void purple_ciphers_uninit(void)
Uninitializes the cipher core.
void purple_cipher_context_set_salt(PurpleCipherContext *context, guchar *salt)
Sets the salt on a context.
size_t purple_cipher_context_get_salt_size(PurpleCipherContext *context)
Gets the size of the salt if the cipher supports it.
void purple_cipher_context_set_key_with_len(PurpleCipherContext *context, const guchar *key, size_t len)
Sets the key with a given length on a context.
gboolean purple_cipher_context_digest_to_str(PurpleCipherContext *context, size_t in_len, gchar digest_s[], size_t *out_len)
Converts a guchar digest into a hex string.
void purple_cipher_context_set_key(PurpleCipherContext *context, const guchar *key)
Sets the key on a context.
void purple_cipher_context_set_iv(PurpleCipherContext *context, guchar *iv, size_t len)
Sets the initialization vector for a context.
guint purple_cipher_get_capabilities(PurpleCipher *cipher)
Gets a cipher's capabilities.
gchar * purple_cipher_http_digest_calculate_response(const gchar *algorithm, const gchar *method, const gchar *digest_uri, const gchar *qop, const gchar *entity, const gchar *nonce, const gchar *nonce_count, const gchar *client_nonce, const gchar *session_key)
Calculate a response for HTTP Digest authentication.
gpointer purple_ciphers_get_handle(void)
Gets the handle to the cipher subsystem.
void purple_cipher_context_destroy(PurpleCipherContext *context)
Destorys a cipher context and deinitializes it.
void purple_cipher_context_reset(PurpleCipherContext *context, gpointer extra)
Resets a cipher context to it's default value.
_PurpleCipherCaps
The operation flags for a cipher.
Definition: cipher.h:52
@ PURPLE_CIPHER_CAPS_GET_OPT
Get option flag.
Definition: cipher.h:54
@ PURPLE_CIPHER_CAPS_SET_KEY
Set key flag
Definition: cipher.h:65
@ PURPLE_CIPHER_CAPS_SET_IV
Set IV flag
Definition: cipher.h:58
@ PURPLE_CIPHER_CAPS_UNINIT
Uninit flag
Definition: cipher.h:57
@ PURPLE_CIPHER_CAPS_ENCRYPT
Encrypt flag
Definition: cipher.h:61
@ PURPLE_CIPHER_CAPS_GET_SALT_SIZE
Get salt size flag
Definition: cipher.h:64
@ PURPLE_CIPHER_CAPS_SET_OPT
Set option flag.
Definition: cipher.h:53
@ PURPLE_CIPHER_CAPS_INIT
Init flag
Definition: cipher.h:55
@ PURPLE_CIPHER_CAPS_GET_BLOCK_SIZE
The get block size flag.
Definition: cipher.h:69
@ PURPLE_CIPHER_CAPS_SET_KEY_WITH_LEN
The set key with length flag.
Definition: cipher.h:70
@ PURPLE_CIPHER_CAPS_DECRYPT
Decrypt flag
Definition: cipher.h:62
@ PURPLE_CIPHER_CAPS_UNKNOWN
Unknown
Definition: cipher.h:71
@ PURPLE_CIPHER_CAPS_SET_SALT
Set salt flag
Definition: cipher.h:63
@ PURPLE_CIPHER_CAPS_RESET
Reset flag
Definition: cipher.h:56
@ PURPLE_CIPHER_CAPS_GET_BATCH_MODE
Get batch mode flag.
Definition: cipher.h:68
@ PURPLE_CIPHER_CAPS_SET_BATCH_MODE
Set batch mode flag.
Definition: cipher.h:67
@ PURPLE_CIPHER_CAPS_DIGEST
Digest flag
Definition: cipher.h:60
@ PURPLE_CIPHER_CAPS_APPEND
Append flag
Definition: cipher.h:59
@ PURPLE_CIPHER_CAPS_GET_KEY_SIZE
Get key size flag
Definition: cipher.h:66
gchar * purple_cipher_http_digest_calculate_session_key(const gchar *algorithm, const gchar *username, const gchar *realm, const gchar *password, const gchar *nonce, const gchar *client_nonce)
Calculates a session key for HTTP Digest authentation.
gint purple_cipher_context_encrypt(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen)
Encrypts data using the context.
PurpleCipherContext * purple_cipher_context_new_by_name(const gchar *name, void *extra)
Creates a new cipher context by the cipher name and initializes it.
PurpleCipherBatchMode purple_cipher_context_get_batch_mode(PurpleCipherContext *context)
Gets the batch mode of a context.
PurpleCipherContext * purple_cipher_context_new(PurpleCipher *cipher, void *extra)
Creates a new cipher context and initializes it.
gpointer purple_cipher_context_get_data(PurpleCipherContext *context)
Gets the cipher data for a context.
void purple_cipher_context_append(PurpleCipherContext *context, const guchar *data, size_t len)
Appends data to the context.
const gchar * purple_cipher_get_name(PurpleCipher *cipher)
Gets a cipher's name.
enum _PurpleCipherCaps PurpleCipherCaps
The operation flags for a cipher.
gboolean purple_cipher_context_digest(PurpleCipherContext *context, size_t in_len, guchar digest[], size_t *out_len)
Digests a context.
void purple_ciphers_init(void)
Initializes the cipher core.
struct _PurpleCipher PurpleCipher
A handle to a PurpleCipher
Definition: cipher.h:37
void purple_cipher_context_set_option(PurpleCipherContext *context, const gchar *name, gpointer value)
Sets the value an option on a cipher context.
PurpleCipher * purple_ciphers_register_cipher(const gchar *name, PurpleCipherOps *ops)
Registers a cipher as a usable cipher.
size_t purple_cipher_context_get_block_size(PurpleCipherContext *context)
Gets the block size of a context.
The operations of a cipher.
Definition: cipher.h:77
void(* set_option)(PurpleCipherContext *context, const gchar *name, void *value)
The set option function.
Definition: cipher.h:79
int(* decrypt)(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen)
The decrypt function.
Definition: cipher.h:106
void(* uninit)(PurpleCipherContext *context)
The uninit function.
Definition: cipher.h:91
void(* set_key)(PurpleCipherContext *context, const guchar *key)
The set key function.
Definition: cipher.h:115
gboolean(* digest)(PurpleCipherContext *context, size_t in_len, guchar digest[], size_t *out_len)
The digest function.
Definition: cipher.h:100
PurpleCipherBatchMode(* get_batch_mode)(PurpleCipherContext *context)
The get batch mode function.
Definition: cipher.h:124
void(* reset)(PurpleCipherContext *context, void *extra)
The reset function.
Definition: cipher.h:88
size_t(* get_salt_size)(PurpleCipherContext *context)
The get salt size function.
Definition: cipher.h:112
size_t(* get_block_size)(PurpleCipherContext *context)
The get block size function.
Definition: cipher.h:127
int(* encrypt)(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen)
The encrypt function.
Definition: cipher.h:103
size_t(* get_key_size)(PurpleCipherContext *context)
The get key size function.
Definition: cipher.h:118
void(* append)(PurpleCipherContext *context, const guchar *data, size_t len)
The append data function.
Definition: cipher.h:97
void(* set_key_with_len)(PurpleCipherContext *context, const guchar *key, size_t len)
The set key with length function.
Definition: cipher.h:130
void(* set_batch_mode)(PurpleCipherContext *context, PurpleCipherBatchMode mode)
The set batch mode function.
Definition: cipher.h:121
void(* set_salt)(PurpleCipherContext *context, guchar *salt)
The set salt function.
Definition: cipher.h:109
void(* set_iv)(PurpleCipherContext *context, guchar *iv, size_t len)
The set initialization vector function.
Definition: cipher.h:94
void(* init)(PurpleCipherContext *context, void *extra)
The init function.
Definition: cipher.h:85