X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/4a1a591973e0be6f33a55b8f1fc5abc827f6969d..af43f0b77a10716921d13c047d1d3c39570cae17:/serpent.h 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 */