Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Merge pull request #43 from miscreant/re-export-sivaead-struct-and-si…
Browse files Browse the repository at this point in the history
…v-module

Re-export `SivAead` and `siv` module
  • Loading branch information
tarcieri committed Dec 5, 2019
2 parents a719b94 + cee231a commit 257bc9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ pub mod ffi;
#[cfg(feature = "stream")]
pub mod stream;

pub use crate::aead::{Aead, Aes128SivAead, Aes256SivAead};
pub use crate::aead::{Aead, Aes128SivAead, Aes256SivAead, SivAead};
pub use aes_siv::{
aead::{generic_array, Error},
siv::{Aes128Siv, Aes256Siv},
siv::{self, Aes128Siv, Aes256Siv},
};

#[cfg(feature = "pmac")]
Expand Down

0 comments on commit 257bc9e

Please sign in to comment.