pubnub 0.7.0

PubNub SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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_.

#[doc(inline)]
pub use legacy::LegacyCryptor;
pub mod legacy;

#[doc(inline)]
pub use aes_cbc::AesCbcCryptor;
pub mod aes_cbc;