diff options
Diffstat (limited to 'core/fdrm/crypto/fx_crypt.h')
-rw-r--r-- | core/fdrm/crypto/fx_crypt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/fdrm/crypto/fx_crypt.h b/core/fdrm/crypto/fx_crypt.h index 24650bec9a..3ee2e4bdbe 100644 --- a/core/fdrm/crypto/fx_crypt.h +++ b/core/fdrm/crypto/fx_crypt.h @@ -13,6 +13,12 @@ extern "C" { #endif +struct CRYPT_md5_context { + uint32_t total[2]; + uint32_t state[4]; + uint8_t buffer[64]; +}; + void CRYPT_ArcFourCryptBlock(uint8_t* data, uint32_t size, const uint8_t* key, |