Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6ad31ab

Browse files
authoredSep 4, 2019
Update README.md
1 parent 84b8141 commit 6ad31ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ The java code below uses a base64 util class from android SDK but you can replac
5252

5353
//Kotlin(Android)
5454
var publickey = applicationContext.resources.getString(R.string.public_key)
55-
var crenc = Crypto().encrypt("TestPassword", publickey)
56-
Log.e("TAG", crenc)
57-
var crdec = Crypto().decrypt(crenc, publickey)Hel
58-
Log.e("TAG", crdec)
55+
var enc = Crypto().encrypt("TestPassword", publickey)
56+
Log.e("TAG", enc)
57+
var dec = Crypto().decrypt(enc, publickey)
58+
Log.e("TAG", dec)
5959

6060
************************************************************************
6161
C# (Code)

0 commit comments

Comments
 (0)
Please sign in to comment.