We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3fac0f commit f31f999Copy full SHA for f31f999
2 files changed
src/lib.rs
@@ -0,0 +1,13 @@
1
+extern crate base64;
2
+extern crate ring;
3
+
4
+mod string_encryption_key_based_symmetric;
5
6
+#[cfg(test)]
7
+mod tests {
8
+ #[test]
9
+ fn it_works() {
10
+ // This test simply simply runs all the examples to ensure that they compile and work.
11
+ ::string_encryption_key_based_symmetric::main();
12
+ }
13
+}
src/main.rs
0 commit comments