mailmap: add mail alias
[transsip-mirror.git] / src / scramble.h
blob2efa2c5ca53858144ea5e451a5fe01d63c1584ff
1 /*
2 * transsip - the telephony toolkit
3 * By Daniel Borkmann <daniel@transsip.org>
4 * Copyright 2012 Daniel Borkmann <dborkma@tik.ee.ethz.ch>
5 * Subject to the GPL, version 2.
6 * Based on Bhaskar Biswas and Nicolas Sendrier McEliece
7 * implementation, LGPL 2.1.
8 */
10 #ifndef SCRAMBLE_H
11 #define SCRAMBLE_H
13 #include <stdint.h>
15 extern void scramble(uint8_t *cleartext, uint8_t *message);
16 extern int unscramble(uint8_t *message, uint8_t *cleartext);
18 #endif /* SCRAMBLE_H */