Skip to content
This repository was archived by the owner on Aug 4, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ You will continue using the same api as before. The only thing you need to do is

``` java
// set encryption
String IVX = "abcdefghijklmnop"; // 16 lenght - not secret
String SECRET_KEY = "secret1234567890"; // 16 lenght - secret
String IVX = "abcdefghijklmnop"; // 16 length - not secret
String SECRET_KEY = "secret1234567890"; // 16 length - secret
byte[] SALT = "0000111100001111".getBytes(); // random 16 bytes array

// build configuratio
// build configuration
EncryptConfiguration configuration = new EncryptConfiguration.Builder()
.setEncryptContent(IVX, SECRET_KEY, SALT)
.build();
Expand Down