open(_:using:)
Decrypts the message and verifies its authenticity.
Declaration
static func open(_ sealedBox: AES.GCM.SealedBox, using key: SymmetricKey) throws -> DataParameters
- sealedBox:
The sealed box to open.
- key:
The cryptographic key that was used to seal the message.
Return Value
The original plaintext message that was sealed in the box, as long as the correct key is used and authentication succeeds. The call throws an error if decryption or authentication fail.