squall/storm/crypto/SARC4Key.hpp

13 lines
176 B
C++
Raw Permalink Normal View History

2023-03-23 12:48:16 -05:00
#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