]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - seed.h
modification to the build system
[avr-crypto-lib.git] / seed.h
diff --git a/seed.h b/seed.h
index 330944d419679bf6cf3919bc9c63b6c7fa1777f7..4ee1d8b9e65df58abe3697a4bee6d07a99b2cf52 100644 (file)
--- a/seed.h
+++ b/seed.h
@@ -36,8 +36,8 @@ typedef struct{
 
 /******************************************************************************/
 
-void seed_init(seed_ctx_t * ctx, uint8_t * key);
-void seed_encrypt(seed_ctx_t * ctx, void * buffer);
-void seed_decrypt(seed_ctx_t * ctx, void * buffer);
+void seed_init(uint8_t * key, seed_ctx_t * ctx);
+void seed_enc(void * buffer, seed_ctx_t * ctx);
+void seed_dec(void * buffer, seed_ctx_t * ctx);
        
 #endif /*SEED_H_*/