Search Code
About crypto

Published 29 Dec 2009.

Last change message: N/A

Import this program

crypto

Published 29 Dec 2009, by   user Anders Rundgren   tag No tags
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers hexdump.h Source File

hexdump.h

00001 /*
00002  * hexdump.h
00003  *
00004  *  Created on: Dec 15, 2009
00005  *      Author: Anders
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 /* _WEBPKI_HEXDUMP_H_ */