mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 02:33:50 +00:00
b3850be217
- Remove \r from crypto_des - Initial work towards dir.zigns
68 lines
1.4 KiB
C
68 lines
1.4 KiB
C
/* radare - LGPL - Copyright 2016-2017 - rakholiyajenish.07 */
|
|
|
|
#include <r_lib.h>
|
|
#include <r_crypto.h>
|
|
#include <r_util.h>
|
|
|
|
static bool base64_set_key(RCrypto *cry, const ut8 *key, int keylen, int mode, int direction) {
|
|
cry->dir = direction;
|
|
return true;
|
|
}
|
|
|
|
static int base64_get_key_size(RCrypto *cry) {
|
|
return 0;
|
|
}
|
|
|
|
static bool base64_use(const char *algo) {
|
|
return !strcmp (algo, "base64");
|
|
}
|
|
|
|
static bool update(RCrypto *cry, const ut8 *buf, int len) {
|
|
int olen = 0;
|
|
ut8 *obuf = NULL;
|
|
if (cry->dir == 0) {
|
|
olen = ((len + 2) / 3 ) * 4;
|
|
obuf = malloc (olen + 1);
|
|
if (!obuf) {
|
|
return false;
|
|
}
|
|
r_base64_encode ((char *)obuf, (const ut8 *)buf, len);
|
|
} else if (cry->dir == 1) {
|
|
olen = (len / 4) * 3;
|
|
if (len > 0) {
|
|
olen -= (buf[len-1] == '=') ? ((buf[len-2] == '=') ? 2 : 1) : 0;
|
|
}
|
|
obuf = malloc (olen + 1);
|
|
if (!obuf) {
|
|
return false;
|
|
}
|
|
olen = r_base64_decode (obuf, (const char *)buf, len);
|
|
}
|
|
if (olen > 0) {
|
|
r_crypto_append (cry, obuf, olen);
|
|
}
|
|
free (obuf);
|
|
return true;
|
|
}
|
|
|
|
static bool final(RCrypto *cry, const ut8 *buf, int len) {
|
|
return update (cry, buf, len);
|
|
}
|
|
|
|
RCryptoPlugin r_crypto_plugin_base64 = {
|
|
.name = "base64",
|
|
.set_key = base64_set_key,
|
|
.get_key_size = base64_get_key_size,
|
|
.use = base64_use,
|
|
.update = update,
|
|
.final = final
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
RLibStruct radare_plugin = {
|
|
.type = R_LIB_TYPE_CRYPTO,
|
|
.data = &r_crypto_plugin_base64,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|