English 中文(简体)
id-aes128-wrap诉es128-wrap之间的差别?
原标题:Difference Between id-aes128-wrap vs aes128-wrap?

在Node.js,console.dir (getCiphers (),{ maxArrayLength : 无}) products both id-aes128-wrap and aes128-wrap。 他们之间的区别是什么?

滚动式getCipherInfo似乎表明后者只是前者的一个方面?

console.log(getCipherInfo( id-aes128-wrap ))
console.log(getCipherInfo( aes128-wrap ))

回返:

{
  mode:  wrap ,
  name:  id-aes128-wrap ,
  nid: 788,
  blockSize: 8,
  ivLength: 8,
  keyLength: 16
}
{
  mode:  wrap ,
  name:  id-aes128-wrap ,
  nid: 788,
  blockSize: 8,
  ivLength: 8,
  keyLength: 16
}
问题回答

They re the same thing; it s an alias.





相关问题
How to make Sequelize use singular table names

I have an model called User but Sequelize looks for the table USERS whenever I am trying to save in the DB. Does anyone know how to set Sequelize to use singular table names? Thanks.

What is Node.js? [closed]

I don t fully get what Node.js is all about. Maybe it s because I am mainly a web based business application developer. What is it and what is the use of it? My understanding so far is that: The ...

Clientside going serverside with node.js

I`ve been looking for a serverside language for some time, and python got my attention somewhat. But as I already know and love javascript, I now want learn to code on the server with js and node.js. ...

Can I use jQuery with Node.js?

Is it possible to use jQuery selectors/DOM manipulation on the server-side using Node.js?

How do I escape a string for a shell command in node?

In nodejs, the only way to execute external commands is via sys.exec(cmd). I d like to call an external command and give it data via stdin. In nodejs there does yet not appear to be a way to open a ...