Skip to content
Snippets Groups Projects
Commit 633ede6f authored by Niels Möller's avatar Niels Möller
Browse files

(nettle_crypt_func): Typedef moved to cbc.h.

Include cbc.h instead.

Rev: src/nettle/nettle-meta.h:1.12
parent bc7d7904
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,9 @@
#include "nettle-types.h"
/* For nettle_crypt_func */
#include "cbc.h"
/* Randomness. Used by key generation and dsa signature creation. */
typedef void (*nettle_random_func)(void *ctx,
unsigned length, uint8_t *dst);
......@@ -37,13 +40,9 @@ typedef void (*nettle_progress_func)(void *ctx,
int c);
/* Ciphers */
typedef void (*nettle_crypt_func)(void *ctx,
unsigned length, uint8_t *dst,
const uint8_t *src);
typedef void (*nettle_set_key_func)(void *ctx,
unsigned length,
const uint8_t *key);
unsigned length,
const uint8_t *key);
struct nettle_cipher
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment