We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
let
var
1 parent 12c09bf commit c63d6e8Copy full SHA for c63d6e8
cryptography-providers/cryptokit/src/commonMain/swift/SwiftAesGcm.swift
@@ -8,7 +8,7 @@ import Foundation
8
plaintext: NSData,
9
authenticatedData: NSData
10
) throws -> Data {
11
- var sealedBox = try AES.GCM.seal(
+ let sealedBox = try AES.GCM.seal(
12
plaintext as Data,
13
using: SymmetricKey(data: key as Data),
14
nonce: try AES.GCM.Nonce(data: nonce as Data),
0 commit comments