]> 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 04b3566f5678843eb370e9e6ec68c89fa155ee20..4ee1d8b9e65df58abe3697a4bee6d07a99b2cf52 100644 (file)
--- a/seed.h
+++ b/seed.h
@@ -37,7 +37,7 @@ typedef struct{
 /******************************************************************************/
 
 void seed_init(uint8_t * key, seed_ctx_t * ctx);
-void seed_encrypt(void * buffer, seed_ctx_t * ctx);
-void seed_decrypt(void * buffer, 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_*/