File: base32.hh

package info (click to toggle)
pdns-recursor 3.6.2-2%2Bdeb8u4
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,584 kB
  • sloc: cpp: 18,941; ansic: 1,653; sh: 539; makefile: 130
file content (8 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
#ifndef PDNS_BASE32_HH
#define PDNS_BASE32_HH
#include <string>

std::string toBase32Hex(const std::string& input);
std::string fromBase32Hex(const std::string& input);

#endif