djbdnscurve6 45
djbdnscurve6
Loading...
Searching...
No Matches
Functions
base32.h File Reference
#include "uint_t.h"
Include dependency graph for base32.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

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 *)
 

Function Documentation

◆ base32_bytessize()

unsigned int base32_bytessize ( unsigned int  len)

Definition at line 40 of file base32.c.

Here is the caller graph for this function:

◆ base32_clientkey()

void base32_clientkey ( uint8 *  out,
const char *  key 
)

Definition at line 106 of file base32.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ base32_decode()

unsigned int base32_decode ( uint8 *  out,
const char *  in,
unsigned int  len,
int  mode 
)

Definition at line 46 of file base32.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ base32_encode()

void base32_encode ( uint8 *  out,
const char *  in,
unsigned int  len 
)

Definition at line 77 of file base32.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ base32_serverkey()

unsigned int base32_serverkey ( uint8 *  out,
const char *  in,
unsigned int  len 
)

Definition at line 127 of file base32.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ 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.