-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibex_crypto.h
More file actions
executable file
·22 lines (16 loc) · 1.03 KB
/
Copy pathlibex_crypto.h
File metadata and controls
executable file
·22 lines (16 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* -------------------------------------------------------------------------- */
/* (c) ali@balarabe.com [libex_crypto.h] */
/* -------------------------------------------------------------------------- */
#if !defined INCLUDED_LIBEX_CRYPTO_H
#define INCLUDED_LIBEX_CRYPTO_H
#include "libex.h"
/* -------------------------------------------------------------------------- */
LX_NAMESPACE(lx_c)
LX_PUBLIC lx_new_bytes_t lx_simple_encrypt( /*F*/
const lx_bytes_t data_, /*-*/
const lx_bytes_t key_ ); /*-*/
LX_PUBLIC lx_new_bytes_t lx_simple_decrypt( /*F*/
const lx_bytes_t data_, /*-*/
const lx_bytes_t key_ ); /*-*/
LX_END_NAMESPACE /*lx_c*/
#endif /*eof*/