You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
As outlined in https://www.w3.org/TR/WebCryptoAPI/#dfn-AesCtrParams : which requires the use of a counter and length parameters for use in the counter style block encryption (More info here), is currently not "intuitively" supported by the node's lib Crypto https://nodejs.org/api/crypto.html#crypto_class_cipher. It has some base level implementation of
aes-128-ctr
, but does not make use of a counter at all; thus resulting in an unsupported issue complained about in nodejs/node#13801.@EternalDeiwos pointed out https://github.com/jrnewell/crypto-aes-ctr/blob/master/lib/index.js as good alternative. Further investigation may need to be done if node doesnt support this problem.
The text was updated successfully, but these errors were encountered: