Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3500764
D6000.id20256.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D6000.id20256.diff
View Options
diff --git a/native/native_rust_library/src/crypto_tools.rs b/native/native_rust_library/src/crypto_tools.rs
--- a/native/native_rust_library/src/crypto_tools.rs
+++ b/native/native_rust_library/src/crypto_tools.rs
@@ -4,6 +4,8 @@
use openssl::sign::Signer;
use rand::distributions::{Alphanumeric, DistString};
+#[cfg(test)]
+use openssl::{rsa::Rsa, sign::Verifier};
#[cfg(test)]
use regex::Regex;
@@ -93,4 +95,29 @@
);
}
}
+
+ #[test]
+ fn verify_signed_string_with_private_key() {
+ const NONCE: &str = "Test1ghTCoNquWbO2ST7G1c9";
+
+ // Generate a keypair
+ let keypair = Rsa::generate(1024).expect("Failed to generate RSA keypair");
+ let keypair = PKey::from_rsa(keypair).expect("Failed to get key from rsa");
+
+ // Sign the string to be signed with the private key
+ let string_signature_base64 = sign_string_with_private_key(&keypair, NONCE)
+ .expect("Error on calling the string signer function");
+
+ // Verify signature
+ let mut verifier =
+ Verifier::new(MessageDigest::sha256(), &keypair).unwrap();
+ verifier.update(NONCE.as_bytes()).unwrap();
+
+ assert!(verifier
+ .verify(
+ &base64::decode(string_signature_base64)
+ .expect("Failed to decode base64"),
+ )
+ .expect("Error on calling OpenSSL string verifier"));
+ }
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 2:47 AM (18 h, 9 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2682792
Default Alt Text
D6000.id20256.diff (1 KB)
Attached To
Mode
D6000: [native/rust_library] Adding unit test for the `sign_string_with_private_key` function
Attached
Detach File
Event Timeline
Log In to Comment