mirror of
https://gitee.com/apaki/cmake_demo.git
synced 2025-05-17 20:01:36 +08:00
13 lines
275 B
C
13 lines
275 B
C
|
|
#include <openssl/aes.h>
|
|
|
|
bool aes_encrypt(const char *key, const char *iv, const char *input, size_t input_len, char **output)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool aes_decrypt(const char *key, const char *iv, const char *input, size_t input_len, char **output)
|
|
{
|
|
return false;
|
|
}
|