vue-storefront-api icon indicating copy to clipboard operation
vue-storefront-api copied to clipboard

Use of crypto method's deprecated

Open ajsit opened this issue 5 years ago • 1 comments

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])

ajsit avatar Jan 31 '20 14:01 ajsit

Will someone look into this?

philippsander avatar Jul 21 '21 08:07 philippsander