saphir-cookie 0.13.2

Crate for parsing HTTP cookie headers and managing a cookie jar. Supports signed and private (encrypted + signed) jars.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate base64;
extern crate ring;

#[macro_use]
mod macros;
mod key;
mod private;
mod signed;

pub use self::key::*;
pub use self::private::*;
pub use self::signed::*;