update ntex

This commit is contained in:
Nikolay Kim 2020-07-30 10:42:38 +06:00
parent de001b0f25
commit 27236552ba
8 changed files with 20 additions and 21 deletions

View file

@ -4,7 +4,7 @@ version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Identity service for ntex web framework."
readme = "README.md"
keywords = ["http", "web", "framework", "async", "futures"]
keywords = ["http", "web", "async"]
homepage = "https://ntex.rs"
repository = "https://github.com/ntex-rs/ntex-extras.git"
documentation = "https://docs.rs/ntex-identity/"
@ -21,10 +21,10 @@ default = ["cookie-policy"]
cookie-policy = ["cookie/secure", "ntex/cookie"]
[dependencies]
ntex = "0.1.8"
ntex = "0.1.21"
futures = "0.3.4"
serde = "1.0"
serde_json = "1.0"
cookie = "0.13.3"
cookie = "0.14.2"
derive_more = "0.99.5"
time = { version = "0.2.5", default-features = false, features = ["std"] }

View file

@ -354,8 +354,8 @@ impl<Err: ErrorRenderer> CookieIdentityInner<Err> {
fn new(key: &[u8]) -> CookieIdentityInner<Err> {
let key_v2: Vec<u8> = key.iter().chain([1, 0, 0, 0].iter()).cloned().collect();
CookieIdentityInner {
key: Key::from_master(key),
key_v2: Key::from_master(&key_v2),
key: Key::derive_from(key),
key_v2: Key::derive_from(&key_v2),
name: "ntex-identity".to_owned(),
path: "/".to_owned(),
domain: None,
@ -797,7 +797,7 @@ mod tests {
fn legacy_login_cookie(identity: &'static str) -> Cookie<'static> {
let mut jar = CookieJar::new();
jar.private(&Key::from_master(&COOKIE_KEY_MASTER))
jar.private(&Key::derive_from(&COOKIE_KEY_MASTER))
.add(Cookie::new(COOKIE_NAME, identity));
jar.get(COOKIE_NAME).unwrap().clone()
}
@ -813,7 +813,7 @@ mod tests {
.chain([1, 0, 0, 0].iter())
.map(|e| *e)
.collect();
jar.private(&Key::from_master(&key)).add(Cookie::new(
jar.private(&Key::derive_from(&key)).add(Cookie::new(
COOKIE_NAME,
serde_json::to_string(&CookieValue {
identity: identity.to_string(),
@ -837,7 +837,7 @@ mod tests {
cookies.add(Cookie::parse(cookie.to_str().unwrap().to_string()).unwrap());
}
let cookie = cookies
.private(&Key::from_master(&COOKIE_KEY_MASTER))
.private(&Key::derive_from(&COOKIE_KEY_MASTER))
.get(COOKIE_NAME)
.unwrap();
assert_eq!(cookie.value(), identity);
@ -870,7 +870,7 @@ mod tests {
.map(|e| *e)
.collect();
let cookie = cookies
.private(&Key::from_master(&key))
.private(&Key::derive_from(&key))
.get(COOKIE_NAME)
.unwrap();
let cv: CookieValue = serde_json::from_str(cookie.value()).unwrap();