1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use std::error::{Error as StdError};
use std::fmt::{Display, Formatter, Result as FmtResult};
use std::io::{Error as IoError};

use openssl;

/// An error that can occur when performing crypto operations.
#[derive(Debug)]
pub struct Error(pub(crate) openssl::error::ErrorStack);

impl Display for Error {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        self.0.fmt(f)
    }
}

impl StdError for Error {
    fn description(&self) -> &str {
        self.0.description()
    }
}

impl From<Error> for IoError {
    fn from(err: Error) -> IoError {
        err.0.into()
    }
}