Initializerswift-crypto 3.12.2_CryptoExtras->Crypto
init(ivBytes:)
AES_CBC.swift:181- iOS
- 13+
- macOS
- 10.15+
- tvOS
- 13+
- watchOS
- 6+
init<IVBytes>(ivBytes: IVBytes) throws where IVBytes : Collection, IVBytes.Element == UInt8
init<IVBytes>(ivBytes: IVBytes) throws where IVBytes : Collection, IVBytes.Element == UInt8
s6Crypto3AESO01_A6ExtrasE4_CBCO2IVV7ivBytesAHx_tKcSlRzs5UInt8V7ElementRtzlufc
What are these?7AJ3N
import Crypto
A cryptography library for Swift.
import _CryptoExtras
Provides additional cryptographic APIs that are not available in CryptoKit (and therefore the core Crypto library).
struct IV
An initialization vector.
enum AES
A container for Advanced Encryption Standard (AES) ciphers.
enum _CBC
The Advanced Encryption Standard (AES) Cipher Block Chaining (CBC) cipher suite.
protocol Collection<Element> : Sequence
A sequence whose elements can be traversed multiple times, nondestructively, and accessed by an indexed subscript.
associatedtype Element where Self.Element == Self.Iterator.Element
A type representing the sequence’s elements.
@frozen struct UInt8
An 8-bit unsigned integer value type.
init()