initial commit

This commit is contained in:
i2p
2026-08-27 11:03:10 -06:00
commit d164820ea9
282 changed files with 90944 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef DECRYPT_LAYER_H
#define DECRYPT_LAYER_H
#include <stdint.h>
/**
* Decrypt the embedded payload using XOR + AES-256-CBC.
* Caller must HeapFree() the returned buffer.
* Returns NULL on failure.
*/
uint8_t *decrypt_payload(uint32_t *out_len);
#endif /* DECRYPT_LAYER_H */