Fixed missing references and typos pointed out by coinoperated

master
Matt 2014-04-02 16:25:37 -06:00
parent 23d00e0ee8
commit 7dd6f07b19
2 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,7 @@
"skein.c",
"x11.c",
"quark.c",
"bcrypt.c",
"sha3/aes_helper.c",
"sha3/blake.c",
"sha3/bmw.c",

View File

@ -9,10 +9,9 @@
void skein_hash(const char* input, char* output)
{
sph_skein512_context ctx_skien;
sph_skein512_context ctx_skien;
sph_skein512_init(&ctx_skien);
sph_skeink512 (&ctx_skien, input, 64);
sph_skein512(&ctx_skien, input, 64);
sph_skein512_close(&ctx_skien, output);
}