#include "uint_t.h"
Go to the source code of this file.
|
unsigned int | base32_bytessize (unsigned int) |
unsigned int | base32_decode (uint8 *, const char *, unsigned int, int) |
unsigned int | base32_serverkey (uint8 *, const char *, unsigned int) |
void | base32_encode (uint8 *, const char *, unsigned int) |
void | base32_clientkey (uint8 *, const char *) |
int | hex_encode (const uint8 *, int, char *, int) |
int | hex_decode (const char *, uint8 *) |
◆ base32_bytessize()
unsigned int base32_bytessize |
( |
unsigned int | len | ) |
|
◆ base32_clientkey()
void base32_clientkey |
( |
uint8 * | out, |
|
|
const char * | key ) |
◆ base32_decode()
unsigned int base32_decode |
( |
uint8 * | out, |
|
|
const char * | in, |
|
|
unsigned int | len, |
|
|
int | mode ) |
◆ base32_encode()
void base32_encode |
( |
uint8 * | out, |
|
|
const char * | in, |
|
|
unsigned int | len ) |
◆ base32_serverkey()
unsigned int base32_serverkey |
( |
uint8 * | out, |
|
|
const char * | in, |
|
|
unsigned int | len ) |
◆ hex_decode()
int hex_decode |
( |
const char * | src, |
|
|
uint8 * | dst ) |
Definition at line 30 of file hex.c.
◆ hex_encode()
int hex_encode |
( |
const uint8 * | src, |
|
|
int | srclen, |
|
|
char * | dst, |
|
|
int | dstlen ) |
Definition at line 42 of file hex.c.