From 9e3fdf279a9ef276192c15a62e5cca68a4fd8957 Mon Sep 17 00:00:00 2001 From: Goncalo Frade Date: Sat, 20 Jan 2024 12:45:15 +0000 Subject: [PATCH] feat(jws): make func public --- Sources/JSONWebSignature/JWK+SigningAlgorithm.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/JSONWebSignature/JWK+SigningAlgorithm.swift b/Sources/JSONWebSignature/JWK+SigningAlgorithm.swift index 3609de2..83e3da7 100644 --- a/Sources/JSONWebSignature/JWK+SigningAlgorithm.swift +++ b/Sources/JSONWebSignature/JWK+SigningAlgorithm.swift @@ -19,7 +19,7 @@ import JSONWebAlgorithms import JSONWebKey extension JWK { - func signingAlgorithm() throws -> SigningAlgorithm { + public func signingAlgorithm() throws -> SigningAlgorithm { switch keyType { case .rsa: switch algorithm {