From ec0d4dac0c5f85d74c344f670d288bd63dede186 Mon Sep 17 00:00:00 2001 From: Si Beaumont Date: Fri, 7 Jun 2024 22:48:37 +0100 Subject: [PATCH] Parameters are Sendable, regardless of H type parameter --- Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift b/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift index 48ad201a..e1e0cfa9 100644 --- a/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift +++ b/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift @@ -245,7 +245,7 @@ extension _RSA.BlindSigning { /// The RECOMMENDED variants are RSABSSA-SHA384-PSS-Randomized or RSABSSA-SHA384-PSSZERO-Randomized. /// /// - Seealso: [RFC 9474: RSABSSA Variants](https://www.rfc-editor.org/rfc/rfc9474.html#name-rsabssa-variants). - public struct Parameters: Sendable where H: Sendable { + public struct Parameters: Sendable { enum Padding { case PSS, PSSZERO } var padding: Padding