rs-crypto 0.1.1

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

pub mod isaac;
pub mod rsa;