We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b8141 commit 6ad31abCopy full SHA for 6ad31ab
README.md
@@ -52,10 +52,10 @@ The java code below uses a base64 util class from android SDK but you can replac
52
53
//Kotlin(Android)
54
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)
+ var enc = Crypto().encrypt("TestPassword", publickey)
+ Log.e("TAG", enc)
+ var dec = Crypto().decrypt(enc, publickey)
+ Log.e("TAG", dec)
59
60
************************************************************************
61
C# (Code)
0 commit comments