vue-storefront-api
vue-storefront-api copied to clipboard
Use of crypto method's deprecated
Current use of crypto method's deprecated in /src/lib/util.js.
- deprecated usage:
- crypto.createCipher(algorithm, password [,options])
- crypto.createDecipher(algorithm, password [,options])
- Should use instead:
- crypto.createCipheriv(algorithm, key, iv [,options])
- crypto.createDecipheriv(algorithm, key, iv [,options])
Will someone look into this?