// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Cryptographic primitives for Always Encrypted (column encryption).
//!
//! This module implements the cell-encryption algorithm used by SQL Server's
//! Always Encrypted feature. It uses the platform-selected crypto backend from
//! [`crate::security::crypto`] (Windows CNG, Apple Security.framework +
//! CommonCrypto, or OpenSSL) for the underlying AES and HMAC primitives.
pub use ;
pub use decrypt_cell;
pub use encrypt_cell_value;
pub use encrypt_parameter;