pg: Add missing dummy stack frames for mcount for x86_64.
[dragonfly.git] / sys / crypto / serpent / serpent.h
blob7319cb78a41c0623de98bb07cc153d56c349441b
2 // Copyright in this code is held by Dr B. R. Gladman but free direct or
3 // derivative use is permitted subject to acknowledgement of its origin.
4 // Dr B. R. Gladman . 25th January 2000.
6 typedef struct
8 uint32_t l_key[140];
9 } serpent_ctx;
11 void serpent_set_key(serpent_ctx *ctx, const u_int8_t in_key[], int key_len);
12 void serpent_encrypt(serpent_ctx *ctx, const u_int8_t in_blk[],
13 u_int8_t out_blk[]);
14 void serpent_decrypt(serpent_ctx *ctx, const u_int8_t in_blk[],
15 u_int8_t out_blk[]);