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 6fb4708 commit 63da345Copy full SHA for 63da345
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