[go: up one dir, main page]

cookie 0.11.4

HTTP cookie parsing and cookie jar management. Supports signed and private (encrypted, authenticated) jars.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate rand;
extern crate base64;

#[macro_use]
mod macros;
mod key;

pub use self::key::*;

#[cfg(feature = "private")] mod private;
#[cfg(feature = "private")] pub use self::private::*;

#[cfg(feature = "signed")] mod signed;
#[cfg(feature = "signed")] pub use self::signed::*;