From 513e7cfaf90c54048e4b69de7446d290bd6a8a56 Mon Sep 17 00:00:00 2001 From: Muhammad Yaqoob <77429009+orbitalsonic@users.noreply.github.com> Date: Wed, 14 Sep 2022 17:16:12 +0500 Subject: [PATCH 1/5] Create README.md --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..dfcdc66 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# SonicCryptography +Cryptography, or cryptology, is the practice and study of techniques for secure communication in the presence of adversarial behavior. More generally, cryptography is about constructing and analyzing protocols that prevent third parties or the public from reading private messages + +# Add Gradle Files + +###### Add following lines in project gradle file + +``` +repositories { + google() + mavenCentral() + maven { url 'https://jitpack.io' } +} + +``` + +###### Add following dependency in app gradle file + +``` + implementation 'com.github.orbitalsonic:SonicCryptography:1.0.1' + + ``` + + # Example + SonicCryptography.encryptMessage(message,key) + SonicCryptography.decryptMessage(message,key) + +# Note +Key must be 16 characters + +# Screenshots +![alt text](https://github.com/orbitalsonic/SonicCryptography/blob/master/Screenshots/Screenshot_1.jpg?raw=true) From d94c3423412eb1fe88f64bc5d33a7279102e6081 Mon Sep 17 00:00:00 2001 From: Muhammad Yaqoob <77429009+orbitalsonic@users.noreply.github.com> Date: Wed, 14 Sep 2022 17:17:35 +0500 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfcdc66..15594ad 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Cryptography, or cryptology, is the practice and study of techniques for secure # Add Gradle Files -###### Add following lines in project gradle file +###### Add following lines in project gradle file or settings.gralde file ``` repositories { From 43f3bcd23676821f34e88a6fc91d7e25bbab21f0 Mon Sep 17 00:00:00 2001 From: Muhammad Yaqoob <77429009+orbitalsonic@users.noreply.github.com> Date: Wed, 14 Sep 2022 17:19:56 +0500 Subject: [PATCH 3/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 15594ad..176cba5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![](https://jitpack.io/v/orbitalsonic/SonicCountDownTimer.svg)](https://jitpack.io/#orbitalsonic/SonicCountDownTimer) # SonicCryptography Cryptography, or cryptology, is the practice and study of techniques for secure communication in the presence of adversarial behavior. More generally, cryptography is about constructing and analyzing protocols that prevent third parties or the public from reading private messages From d51604f90c7caef479801b6dc3dc5b179c3a48c6 Mon Sep 17 00:00:00 2001 From: Muhammad Yaqoob <77429009+orbitalsonic@users.noreply.github.com> Date: Wed, 14 Sep 2022 17:20:30 +0500 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 176cba5..511e984 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![](https://jitpack.io/v/orbitalsonic/SonicCountDownTimer.svg)](https://jitpack.io/#orbitalsonic/SonicCountDownTimer) +[![](https://jitpack.io/v/orbitalsonic/SonicCryptography.svg)](https://jitpack.io/#orbitalsonic/SonicCryptography) # SonicCryptography Cryptography, or cryptology, is the practice and study of techniques for secure communication in the presence of adversarial behavior. More generally, cryptography is about constructing and analyzing protocols that prevent third parties or the public from reading private messages From dd641d9cc5dcbc17da6f04a54ea051e00f301b3d Mon Sep 17 00:00:00 2001 From: Muhammad Yaqoob <77429009+orbitalsonic@users.noreply.github.com> Date: Wed, 14 Sep 2022 17:22:25 +0500 Subject: [PATCH 5/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 511e984..4714209 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ repositories { ``` # Example - SonicCryptography.encryptMessage(message,key) - SonicCryptography.decryptMessage(message,key) + val myEncryptedMessage = SonicCryptography.encryptMessage(message,key) + val myDecryptedMessage = SonicCryptography.decryptMessage(message,key) # Note Key must be 16 characters