From dc4a53be00738cad061cc2d5c6a0c40e6702d577 Mon Sep 17 00:00:00 2001 From: Gowtham Gopalakrishnan Date: Mon, 15 Oct 2018 00:44:28 +0530 Subject: [PATCH] Typo fixes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 586dd44..874991e 100644 --- a/README.md +++ b/README.md @@ -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();