jsonwebtoken/tests/rsa.rs

52 lines
1.4 KiB
Rust
Raw Normal View History

2017-02-22 02:45:28 -05:00
extern crate jsonwebtoken;
#[macro_use]
extern crate serde_derive;
extern crate chrono;
2017-02-22 02:45:28 -05:00
use chrono::Utc;
2018-10-28 14:58:35 -04:00
use jsonwebtoken::{decode, encode, sign, verify, Algorithm, Header, Validation};
2017-02-22 02:45:28 -05:00
const RSA_ALGORITHMS: &[Algorithm] = &[
Algorithm::RS256,
Algorithm::RS384,
Algorithm::RS512,
Algorithm::PS256,
Algorithm::PS384,
Algorithm::PS512,
];
2017-02-22 02:45:28 -05:00
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
struct Claims {
sub: String,
company: String,
exp: i64,
2017-02-22 02:45:28 -05:00
}
2017-04-10 23:40:01 -04:00
#[test]
fn round_trip_sign_verification() {
for &alg in RSA_ALGORITHMS {
let encrypted = sign("hello world", include_bytes!("private_rsa_key.der"), alg).unwrap();
let is_valid =
verify(&encrypted, "hello world", include_bytes!("public_rsa_key.der"), alg).unwrap();
assert!(is_valid);
}
2017-04-10 23:40:01 -04:00
}
2017-02-22 02:45:28 -05:00
#[test]
fn round_trip_claim() {
let my_claims = Claims {
sub: "b@b.com".to_string(),
company: "ACME".to_string(),
exp: Utc::now().timestamp() + 10000,
2017-02-22 02:45:28 -05:00
};
for &alg in RSA_ALGORITHMS {
let token =
encode(&Header::new(alg), &my_claims, include_bytes!("private_rsa_key.der")).unwrap();
let token_data =
decode::<Claims>(&token, include_bytes!("public_rsa_key.der"), &Validation::new(alg))
.unwrap();
assert_eq!(my_claims, token_data.claims);
assert!(token_data.header.kid.is_none());
}
2017-02-22 02:45:28 -05:00
}