Test the Mosh crypto layer

This commit is contained in:
Keegan McAllister
2012-03-28 04:53:11 -04:00
committed by Keith Winstein
parent d1c4b0a5d7
commit c354a69ee6
7 changed files with 159 additions and 2 deletions
+4
View File
@@ -32,3 +32,7 @@ void hexdump( const void *buf, size_t len, const char *name ) {
void hexdump( const Crypto::AlignedBuffer &buf, const char *name ) {
hexdump( buf.data(), buf.len(), name );
}
void hexdump( const std::string &buf, const char *name ) {
hexdump( buf.data(), buf.size(), name );
}