]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - shacal2/shacal2_enc.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / shacal2 / shacal2_enc.h
index 3aeeafc8c461be2ca77f534f46fc09871d6d2a51..3f120a6323da4bf64cfa80fa85910ea829e63f00 100644 (file)
@@ -1,7 +1,7 @@
 /* shacal2_enc.h */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #define SHACAL2_ENC_H_
 
 #include <stdint.h>
-#include "sha256/sha256.h"
+#include "sha256.h"
 
 #define SHACAL2_BLOCKSIZE  SHA256_HASH_BITS
 #define SHACAL2_BLOCKSIZE_B ((SHACAL2_BLOCKSIZE+7)/8)
 #define SHACAL2_KEYSIZE SHA256_BLOCK_BITS
 #define SHACAL2_KEYSIZE_B ((SHACAL2_KEYSIZE+7)/8)
 
-void shacal2_enc(void* buffer, void* key, uint16_t keysize_b);
+void shacal2_enc(void *buffer, void *key, uint16_t keysize_b);
 
 
 #endif /*SHACAL2_ENC_H_*/