repo.or.cz
/
ghsmtp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bounces only
[ghsmtp.git]
/
Hash-test.cpp
blob
a0617cce8ef0ff141e98e6f9dea1c68a91a9635f
1
#include
"Hash.hpp"
2
3
int
main
()
4
{
5
Hash h
;
6
h
.
update
(
"The quick brown fox jumps over the lazy dog"
);
7
CHECK_EQ
(
h
.
final
(),
"TYMFQCR7TY098TEAKAYB021E9Y6NCMF4DMYDPXHD0B8BYDY9WP90"
);
8
}