Skip to content

Commit d2d2c34

Browse files
committed
fixup! Add minimal implementation of JWK/JWS.
1 parent 86a6ed6 commit d2d2c34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jws.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub(crate) struct ShaWithEcdsaKey(PKey<Private>);
5757
pub(crate) struct ShaWithRsaKey(PKey<Private>);
5858

5959
#[inline]
60-
pub fn base64url<T: AsRef<[u8]>>(buf: T) -> std::string::String {
60+
pub fn base64url<T: AsRef<[u8]>>(buf: T) -> String {
6161
base64::Engine::encode(&base64::engine::general_purpose::URL_SAFE_NO_PAD, buf)
6262
}
6363

0 commit comments

Comments
 (0)