mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
11 lines
259 B
C++
11 lines
259 B
C++
|
|
#ifndef STORM_CRYPTO_HPP
|
||
|
|
#define STORM_CRYPTO_HPP
|
||
|
|
|
||
|
|
#include "storm/crypto/SARC4Key.hpp"
|
||
|
|
|
||
|
|
void SARC4PrepareKey(const void* data, uint32_t len, SARC4Key* key);
|
||
|
|
|
||
|
|
void SARC4ProcessBuffer(void* data, uint32_t len, const SARC4Key* inKey, SARC4Key* outKey);
|
||
|
|
|
||
|
|
#endif
|