adonespitogo / AdoBot-IO

AdoBot NodeJS Server with socket.io
https://github.com/adonespitogo/AdoBot
MIT License
199 stars 160 forks source link

Plain Text Params #31

Open buffer1900 opened 4 years ago

buffer1900 commented 4 years ago

This app is Super cool.Big up @adonespitigo . The params are suppose to be encrypted ,i want to use aes example ;

Kotlin

    val sdk = "24"
     val key = "1234"  
     val cryptLib = CryptLib() 
    val enc_sdk = cryptLib.encryptPlainTextWithRandomIV(sdk, key)

, How am i going to decrypt it inside node js script. Any help will be appreciated.