#[macro_export]
macro_rules! bail {
($e:expr) => {
return Err(($e).into());
};
}
#[derive(Fail, Debug)]
pub enum SnowError {
#[fail(display = "initialization failed at {:?}", reason)]
Init { reason: InitStage },
#[fail(display = "missing prerequisite: {:?}", reason)]
Prereq { reason: Prerequisite },
#[fail(display = "state error of type: {:?}", reason)]
State { reason: StateProblem },
#[fail(display = "invalid input")]
Input,
#[fail(display = "dh failed")]
Dh,
#[fail(display = "decryption failed")]
Decrypt,
}
#[derive(Debug)]
pub enum InitStage {
ValidateKeyLengths,
ValidatePskLengths,
ValidateCipherTypes,
GetRngImpl,
GetDhImpl,
GetCipherImpl,
GetHashImpl,
ValidatePskPosition,
}
impl From<InitStage> for SnowError {
fn from(reason: InitStage) -> Self {
SnowError::Init { reason }
}
}
#[derive(Debug)]
pub enum Prerequisite {
LocalPrivateKey,
RemotePublicKey,
}
impl From<Prerequisite> for SnowError {
fn from(reason: Prerequisite) -> Self {
SnowError::Prereq { reason }
}
}
#[derive(Debug)]
pub enum StateProblem {
MissingKeyMaterial,
MissingPsk,
NotTurnToWrite,
NotTurnToRead,
HandshakeNotFinished,
HandshakeAlreadyFinished,
OneWay,
}
impl From<StateProblem> for SnowError {
fn from(reason: StateProblem) -> Self {
SnowError::State { reason }
}
}