crypto
Published 29 Dec 2009, by
Anders Rundgren

No tags
« Back to documentation index
Show/hide line numbers
hexdump.h Source File
hexdump.h
00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _WEBPKI_HEXDUMP_H_
00009 #define _WEBPKI_HEXDUMP_H_
00010
00011 namespace webpki
00012 {
00013 class HexDump
00014 {
00015 public:
00016
00017 void printDebugData (const unsigned char *indata, const int length, const int bytes_per_line = 16);
00018
00019 void printHexString (const unsigned char *indata, int length);
00020 };
00021 }
00022
00023 #endif