Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

enryption

  1. T

    How to use Instead of Base64, use Base64InputStream which provides decoding string (unlimited size) in kotlin

    `val obj = JSONObject(jwt) val data = obj.getString("data") `val obj = JSONObject(jwt) val data = obj.getString("data") val encryptedStr = data.split(".") val encryptedStrSplit = encryptedStr[1] // decrypt using Base64.decode val decodeResponse =...
Top