You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two crypto backends are available via features, `aws_lc_rs` and `rust_crypto`, at most one of which must be enabled. If you select neither feature, you need to provide your own `CryptoProvider`.
19
19
20
20
For examples of how to implement a `CryptoProvider`, see
Copy file name to clipboardExpand all lines: src/crypto/mod.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -114,11 +114,11 @@ impl CryptoProvider {
114
114
115
115
#[allow(unreachable_code)]
116
116
{
117
-
constNOT_INSTALLED_ERROR:&str = r###"
117
+
constNOT_INSTALLED_ERROR:&str = r"
118
118
Could not automatically determine the process-level CryptoProvider from jsonwebtoken crate features.
119
119
Call CryptoProvider::install_default() before this point to select a provider manually, or make sure exactly one of the 'rust_crypto' and 'aws_lc_rs' features is enabled.
120
120
See the documentation of the CryptoProvider type for more information.
Could not automatically determine the process-level CryptoProvider from jsonwebtoken crate features, or your CryptoProvider does not support JWKs.
156
156
Call CryptoProvider::install_default() before this point to select a provider manually, or make sure exactly one of the 'rust_crypto' and 'aws_lc_rs' features is enabled.
157
157
See the documentation of the CryptoProvider type for more information.
0 commit comments