cookie 0.13.3

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 ring;
extern crate base64;

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

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