소스 검색

Fix access levels

Marcin Krzyżanowski 8 년 전
부모
커밋
07d71bbc1b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Sources/CryptoSwift/ChaCha20.swift

+ 1 - 1
Sources/CryptoSwift/ChaCha20.swift

@@ -15,7 +15,7 @@ public final class ChaCha20: BlockCipher {
     public static let blockSize = 64 // 512 / 8
     fileprivate let context: Context
 
-    private struct Context {
+    fileprivate struct Context {
         var input = Array<UInt32>(repeating: 0, count: 16)
 
         init(key: Array<UInt8>, iv: Array<UInt8>) throws {