rizin/librz/include/rz_crypto/rz_rc4.h
Ayush 5fab5584e2
librz/bin: add CaRT container format support (#5964)
* Add CaRT extractor plugin
* Update cmd_list expected output for CaRT extractor plugin

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-03-07 20:51:50 +08:00

19 lines
379 B
C

// SPDX-FileCopyrightText: 2025 Ayush Dwivedi <ayushd785@gmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef RZ_RC4_H
#define RZ_RC4_H
#include <rz_types.h>
#ifdef __cplusplus
extern "C" {
#endif
RZ_API void rz_rc4_crypt(RZ_NONNULL const ut8 *key, int keylen, RZ_NONNULL const ut8 *in, RZ_NONNULL ut8 *out, int len);
#ifdef __cplusplus
}
#endif
#endif // RZ_RC4_H