Aes-cmac Module For Node.js?
Is there a Node.js module that handles AES-CMAC (RFC 4493)? I've been searching around NPM, Google, and the like, but haven't found one. Somebody within my company built one that w
Solution 1:
Since I couldn't find anything, I ended up creating my own module: node-aes-cmac
As I learned more, I discovered that RFC 4493 is specific for 128 bit keys (AES128). But it references the NIST Special Publication 800-38B which gave the additional information I needed to support 192 and 256 bit keys as well.
Post a Comment for "Aes-cmac Module For Node.js?"