File: base32.hh

package info (click to toggle)
pdns-recursor 3.3-3%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,256 kB
  • sloc: cpp: 13,251; ansic: 2,647; sh: 510; makefile: 87
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