mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-20 22:34:39 +00:00
17 lines
284 B
C
17 lines
284 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
|
|
|