/
germanubis
/
jsonwebtoken
Обзор
Документация
Войти
/
germanubis
/
jsonwebtoken
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/encoding.rs
215 строк
8 KB
Vincent Prouillet
cargo fmt post edition bump
29 сен 2025, 22:37
29 сен 2025, 22:37
e72a3d4
Код
Авторство
О чём код?
use std::fmt::{Debug, Formatter}; use base64::{ Engine, engine::general_purpose::{STANDARD, URL_SAFE}, }; use serde::ser::Serialize; use crate::Algorithm; use crate::algorithms::AlgorithmFamily; use crate::crypto::JwtSigner; use crate::errors::{ErrorKind, Result, new_error}; use crate::header::Header; #[cfg(feature = "use_pem")] use crate::pem::decoder::PemEncodedKey; use crate::serialization::{b64_encode, b64_encode_part}; // Crypto #[cfg(feature = "aws_lc_rs")] use crate::crypto::aws_lc::{ ecdsa::{Es256Signer, Es384Signer}, eddsa::EdDSASigner, hmac::{Hs256Signer, Hs384Signer, Hs512Signer}, rsa::{ Rsa256Signer, Rsa384Signer, Rsa512Signer, RsaPss256Signer, RsaPss384Signer, RsaPss512Signer, }, }; #[cfg(feature = "rust_crypto")] use crate::crypto::rust_crypto::{ ecdsa::{Es256Signer, Es384Signer}, eddsa::EdDSASigner, hmac::{Hs256Signer, Hs384Signer, Hs512Signer}, rsa::{ Rsa256Signer, Rsa384Signer, Rsa512Signer, RsaPss256Signer, RsaPss384Signer, RsaPss512Signer, }, }; /// A key to encode a JWT with. Can be a secret, a PEM-encoded key or a DER-encoded key. /// This key can be re-used so make sure you only initialize it once if you can for better performance. #[derive(Clone)] pub struct EncodingKey { pub(crate) family: AlgorithmFamily, pub(crate) content: Vec<u8>, } impl EncodingKey { /// The algorithm family this key is for. pub fn family(&self) -> AlgorithmFamily { self.family } /// If you're using a HMAC secret that is not base64, use that. pub fn from_secret(secret: &[u8]) -> Self { EncodingKey { family: AlgorithmFamily::Hmac, content: secret.to_vec() } } /// If you have a base64 HMAC secret, use that. pub fn from_base64_secret(secret: &str) -> Result<Self> { let out = STANDARD.decode(secret)?; Ok(EncodingKey { family: AlgorithmFamily::Hmac, content: out }) } /// For loading websafe base64 HMAC secrets, ex: ACME EAB credentials. pub fn from_urlsafe_base64_secret(secret: &str) -> Result<Self> { let out = URL_SAFE.decode(secret)?; Ok(EncodingKey { family: AlgorithmFamily::Hmac, content: out }) } /// If you are loading a RSA key from a .pem file. /// This errors if the key is not a valid RSA key. /// Only exists if the feature `use_pem` is enabled. /// /// # NOTE /// /// According to the [ring doc](https://docs.rs/ring/latest/ring/signature/struct.RsaKeyPair.html#method.from_pkcs8), /// the key should be at least 2047 bits. /// #[cfg(feature = "use_pem")] pub fn from_rsa_pem(key: &[u8]) -> Result<Self> { let pem_key = PemEncodedKey::new(key)?; let content = pem_key.as_rsa_key()?; Ok(EncodingKey { family: AlgorithmFamily::Rsa, content: content.to_vec() }) } /// If you are loading a ECDSA key from a .pem file /// This errors if the key is not a valid private EC key /// Only exists if the feature `use_pem` is enabled. /// /// # NOTE /// /// The key should be in PKCS#8 form. /// /// You can generate a key with the following: /// /// ```sh /// openssl ecparam -genkey -noout -name prime256v1 \ /// | openssl pkcs8 -topk8 -nocrypt -out ec-private.pem /// ``` #[cfg(feature = "use_pem")] pub fn from_ec_pem(key: &[u8]) -> Result<Self> { let pem_key = PemEncodedKey::new(key)?; let content = pem_key.as_ec_private_key()?; Ok(EncodingKey { family: AlgorithmFamily::Ec, content: content.to_vec() }) } /// If you are loading a EdDSA key from a .pem file /// This errors if the key is not a valid private Ed key /// Only exists if the feature `use_pem` is enabled. #[cfg(feature = "use_pem")] pub fn from_ed_pem(key: &[u8]) -> Result<Self> { let pem_key = PemEncodedKey::new(key)?; let content = pem_key.as_ed_private_key()?; Ok(EncodingKey { family: AlgorithmFamily::Ed, content: content.to_vec() }) } /// If you know what you're doing and have the DER-encoded key, for RSA only pub fn from_rsa_der(der: &[u8]) -> Self { EncodingKey { family: AlgorithmFamily::Rsa, content: der.to_vec() } } /// If you know what you're doing and have the DER-encoded key, for ECDSA pub fn from_ec_der(der: &[u8]) -> Self { EncodingKey { family: AlgorithmFamily::Ec, content: der.to_vec() } } /// If you know what you're doing and have the DER-encoded key, for EdDSA pub fn from_ed_der(der: &[u8]) -> Self { EncodingKey { family: AlgorithmFamily::Ed, content: der.to_vec() } } pub(crate) fn inner(&self) -> &[u8] { &self.content } pub(crate) fn try_get_hmac_secret(&self) -> Result<&[u8]> { if self.family == AlgorithmFamily::Hmac { Ok(self.inner()) } else { Err(new_error(ErrorKind::InvalidKeyFormat)) } } } impl Debug for EncodingKey { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { f.debug_struct("EncodingKey") .field("family", &self.family) .field("content", &"[redacted]") .finish() } } /// Encode the header and claims given and sign the payload using the algorithm from the header and the key. /// If the algorithm given is RSA or EC, the key needs to be in the PEM format. /// /// ```rust /// use serde::{Deserialize, Serialize}; /// use jsonwebtoken::{encode, Algorithm, Header, EncodingKey}; /// /// #[derive(Debug, Serialize, Deserialize)] /// struct Claims { /// sub: String, /// company: String /// } /// /// let my_claims = Claims { /// sub: "b@b.com".to_owned(), /// company: "ACME".to_owned() /// }; /// /// // my_claims is a struct that implements Serialize /// // This will create a JWT using HS256 as algorithm /// let token = encode(&Header::default(), &my_claims, &EncodingKey::from_secret("secret".as_ref())).unwrap(); /// ``` pub fn encode<T: Serialize>(header: &Header, claims: &T, key: &EncodingKey) -> Result<String> { if key.family != header.alg.family() { return Err(new_error(ErrorKind::InvalidAlgorithm)); } let signing_provider = jwt_signer_factory(&header.alg, key)?; if signing_provider.algorithm() != header.alg { return Err(new_error(ErrorKind::InvalidAlgorithm)); } let encoded_header = b64_encode_part(&header)?; let encoded_claims = b64_encode_part(claims)?; let message = [encoded_header, encoded_claims].join("."); let signature = b64_encode(signing_provider.sign(message.as_bytes())); Ok([message, signature].join(".")) } /// Return the correct [`JwtSigner`] based on the `algorithm`. pub(crate) fn jwt_signer_factory( algorithm: &Algorithm, key: &EncodingKey, ) -> Result<Box<dyn JwtSigner>> { let jwt_signer = match algorithm { Algorithm::HS256 => Box::new(Hs256Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::HS384 => Box::new(Hs384Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::HS512 => Box::new(Hs512Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::ES256 => Box::new(Es256Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::ES384 => Box::new(Es384Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::RS256 => Box::new(Rsa256Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::RS384 => Box::new(Rsa384Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::RS512 => Box::new(Rsa512Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::PS256 => Box::new(RsaPss256Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::PS384 => Box::new(RsaPss384Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::PS512 => Box::new(RsaPss512Signer::new(key)?) as Box<dyn JwtSigner>, Algorithm::EdDSA => Box::new(EdDSASigner::new(key)?) as Box<dyn JwtSigner>, }; Ok(jwt_signer) }