Technision
Active Member
Greetings dear sinusbot community. i have a question about encrypt strings and something else.
Have the integrated javascript support from sinusbot the ability to use the crypto function?
such like this?
Have the integrated javascript support from sinusbot the ability to use the crypto function?
such like this?
JavaScript:
const crypto = require('crypto')
function encrypt(data) {
return crypto.createhash('sha1').update(data).digest("hex")
}