radare2/libr/crypto/p/crypto_aes.c
pancake 18835c0907 * Drop another unused lib (r_crypto)
- Fix debian farm build and reduce compilation times
2011-04-04 18:09:45 +02:00

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