Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32985106
D6000.1768327883.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D6000.1768327883.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,30 @@
);
}
}
+
+ #[test]
+ fn verify_signed_string_with_private_key() {
+ const STRING_TO_BE_SIGNED: &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, STRING_TO_BE_SIGNED)
+ .expect("Error on calling the string signer function");
+
+ // Verify signature
+ let mut verifier =
+ Verifier::new(MessageDigest::sha256(), &keypair).unwrap();
+ verifier.update(STRING_TO_BE_SIGNED.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
Tue, Jan 13, 6:11 PM (10 h, 51 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5928676
Default Alt Text
D6000.1768327883.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