shairplay 0.4.0

Pure Rust AirPlay server library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Cryptographic primitives for AirPlay authentication and encryption.

pub mod aes;
pub mod fairplay;
mod fairplay_garble;
mod fairplay_tables;
pub mod pairing;
pub mod rsa;

#[cfg(feature = "ap2")]
pub mod chacha_transport;
#[cfg(feature = "ap2")]
pub mod pairing_homekit;
#[cfg(feature = "ap2")]
pub mod tlv;
#[cfg(feature = "video")]
pub mod video_cipher;