Skip to main content

rs_crypto/
lib.rs

1//! RuneScape Cryptography Utilities
2//!
3//! Provides cryptographic primitives used by RuneScape:
4//! - RSA: Login block encryption/decryption
5//! - ISAAC: Stream cipher for packet encryption
6//! - CRC32: Integrity checking
7
8pub mod isaac;
9pub mod rsa;