//! Cryptors module
//!
//! The module provides [`Cryptor`] trait implementations:
//! * [`LegacyCryptor`]
//! * [`AesCbcCryptor`]
//!
//! Actual implementations can be used to configure [`CryptoProvider`]
//! implementations for standalone usage or as part of [`PubNubClientInstance`]
//! for automated data _encryption_ and _decryption_.
pub use LegacyCryptor;
pub use AesCbcCryptor;