mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
13 lines
176 B
C++
13 lines
176 B
C++
|
|
#ifndef STORM_CRYPTO_S_ARC4_KEY_HPP
|
||
|
|
#define STORM_CRYPTO_S_ARC4_KEY_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
struct SARC4Key {
|
||
|
|
uint8_t state[256];
|
||
|
|
uint8_t x;
|
||
|
|
uint8_t y;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|