pub trait JsonwebtokenTrait {
// Required methods
fn hs256_decode(&self) -> Result<Token, Error>;
fn hs384_decode(&self) -> Result<Token, Error>;
fn hs512_decode(&self) -> Result<Token, Error>;
fn hs256_encode(&self) -> Result<String, Error>;
fn hs384_encode(&self) -> Result<String, Error>;
fn hs512_encode(&self) -> Result<String, Error>;
}