From 22ce280f34b0406c257c23ab9f91926a3710bbf7 Mon Sep 17 00:00:00 2001 From: Mark Schall Date: Thu, 19 Sep 2024 11:18:37 -0400 Subject: [PATCH] Making ivBytes accessible for _CBC.IV --- Sources/_CryptoExtras/AES/AES_CBC.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/_CryptoExtras/AES/AES_CBC.swift b/Sources/_CryptoExtras/AES/AES_CBC.swift index 4d00b033..b53af47a 100644 --- a/Sources/_CryptoExtras/AES/AES_CBC.swift +++ b/Sources/_CryptoExtras/AES/AES_CBC.swift @@ -145,7 +145,7 @@ extension AES._CBC { /// An initialization vector. public struct IV: Sendable { // AES CBC uses a 128-bit IV. - var ivBytes: ( + public var ivBytes: ( UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8 )