X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=blobdiff_plain;f=serpent.h;h=857b1b9cdeedd7c2918b19b02aa0fd1e68bceede;hp=19c01fe435acc5354d9f8f6f03bfdbf780abfbed;hb=30834eab2fc4a8d2063025948dc575682844ddbc;hpb=d357bccb2ab22037e2b3415ffdd85212112a90a6 diff --git a/serpent.h b/serpent.h index 19c01fe..857b1b9 100644 --- a/serpent.h +++ b/serpent.h @@ -9,11 +9,17 @@ struct keyInstance { /* Function protoypes */ void serpent_makekey(struct keyInstance *key, int keyLen, const uint8_t *keyMaterial); +void serpentbe_makekey(struct keyInstance *key, int keyLen, + const uint8_t *keyMaterial); void serpent_encrypt(struct keyInstance *key, const uint8_t plaintext[16], uint8_t ciphertext[16]); +void serpentbe_encrypt(struct keyInstance *key, const uint8_t plaintext[16], + uint8_t ciphertext[16]); void serpent_decrypt(struct keyInstance *key, const uint8_t ciphertext[16], uint8_t plaintext[16]); +void serpentbe_decrypt(struct keyInstance *key, const uint8_t ciphertext[16], + uint8_t plaintext[16]); #endif /* serpent_h */