Skip to content

Commit

Permalink
Merge pull request RustCrypto#165 from RustCrypto/stream-cipher/re-ex…
Browse files Browse the repository at this point in the history
…port-block-cipher

stream-cipher: re-export `block_cipher` when enabled
  • Loading branch information
tarcieri committed Jun 3, 2020
2 parents 063cd27 + 9b804d6 commit c226638
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions stream-cipher/src/lib.rs
Expand Up @@ -22,6 +22,9 @@ mod errors;
pub use crate::errors::{InvalidKeyNonceLength, LoopError};
pub use generic_array::{self, typenum::consts};

#[cfg(feature = "block-cipher")]
pub use block_cipher;

use generic_array::typenum::Unsigned;
use generic_array::{ArrayLength, GenericArray};

Expand Down

0 comments on commit c226638

Please sign in to comment.