We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e34784d commit 787f03dCopy full SHA for 787f03d
rust-client/src/lib.rs
@@ -345,6 +345,11 @@ impl VerificationApi {
345
.map_err(|e| Error::DataConversionError(e.to_string()))
346
}
347
348
+ /// Obtains the EAR verification public key as a JSON string.
349
+ pub fn ear_verification_key_as_string(&self) -> String {
350
+ self.ear_verification_key.to_string()
351
+ }
352
+
353
/// Obtains the signature algorithm scheme used with the EAR.
354
pub fn ear_verification_algorithm(&self) -> String {
355
match &self.ear_verification_key.algorithm {
0 commit comments