Could you please tell me if you have any useful libraries and manuals for javasript and c++ des encryption and decryption? Or beg for a demo~
ringa_lee
For nodejs environment, the official library supports it
const CRY = require('crypto'); CRY.getCiphers();
Look for yourself, the document contains crypto.createCipher(algorithm, password), an introduction to this function
If it is not nodejs, you may need to use https://github.com/jakubzaple...
For nodejs environment, the official library supports it
Look for yourself, the document contains crypto.createCipher(algorithm, password), an introduction to this function
If it is not nodejs, you may need to use https://github.com/jakubzaple...