mega-security-rs 0.3.0

An implementation of Mega's security whitepaper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod client;
pub mod server;
pub mod utils;
pub mod errors;
pub mod keys;
pub mod session;
pub mod data;

pub use client::*;
pub use server::*;

pub const PBKDF2_ITER_NUM: u32 = 100000;
pub const RSA_LENGTH: usize = 2048;
pub const SESSION_ID_LENGTH_BYTES: usize = 16;