File: base32.hh

package info (click to toggle)
pdns-recursor 3.7.3-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 1,516 kB
  • sloc: cpp: 25,908; ansic: 1,938; sh: 592; makefile: 137
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