Skip to content
Snippets Groups Projects
Commit 380a87ca authored by Dominik Taborsky's avatar Dominik Taborsky
Browse files

Merge branch 'nettle_len' into 'master'

nettle_len improvement



See merge request !493
parents 6ba0c554 69672a08
No related branches found
No related tags found
No related merge requests found
......@@ -25,17 +25,11 @@
#include "error.h"
#include "shared.h"
typedef
#ifdef NETTLE_VERSION_MAJOR
#if NETTLE_VERSION_MAJOR >= 3
size_t
#else
unsigned
#endif
#if NETTLE_VERSION_MAJOR >= 3
typedef size_t nettle_len;
#else
unsigned
typedef unsigned nettle_len;
#endif
nettle_len;
static size_t base64_decode_raw(const uint8_t *src, size_t src_len,
uint8_t *dst, size_t dst_max_size)
......
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