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~
漂亮男人2017-05-16 13:29:02
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...