Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaqoob committed Sep 14, 2022
2 parents 87e3c92 + dd641d9 commit 6fd5e24
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[![](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

# Add Gradle Files

###### Add following lines in project gradle file or settings.gralde 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
val myEncryptedMessage = SonicCryptography.encryptMessage(message,key)
val myDecryptedMessage = 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)

0 comments on commit 6fd5e24

Please sign in to comment.