mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 11:43:39 +00:00
16 lines
278 B
C
16 lines
278 B
C
#include <r_lib.h>
|
|
#include <r_crypto.h>
|
|
|
|
struct r_crypto_plugin_t r_crypto_plugin_aes = {
|
|
.name = "crypto_aes",
|
|
/* TODO */
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_CRYPTO,
|
|
.data = &r_crypto_plugin_aes
|
|
};
|
|
#endif
|
|
|