AesCbcParams
dictionary of the
Web 加密 API
represents the object that should be passed as the
algorithm
parameter into
SubtleCrypto.encrypt()
,
SubtleCrypto.decrypt()
,
SubtleCrypto.wrapKey()
,或
SubtleCrypto.unwrapKey()
, when using the
AES-CBC
算法。
名称
DOMString
. This should be set to
AES-CBC
.
iv
BufferSource
. The initialization vector. Must be 16 bytes, unpredictable, and preferably cryptographically random. However, it need not be secret (for example, it may be transmitted unencrypted along with the ciphertext).
See the examples for
SubtleCrypto.encrypt()
and
SubtleCrypto.decrypt()
.
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web Cryptography API
The definition of 'SubtleCrypto.AesCbcParams' in that specification. |
推荐 |
Browsers that support the "AES-CBC" algorithm for the
SubtleCrypto.encrypt()
,
SubtleCrypto.decrypt()
,
SubtleCrypto.wrapKey()
,或
SubtleCrypto.unwrapKey()
methods will support this type.
SubtleCrypto.encrypt()
.
SubtleCrypto.decrypt()
.
SubtleCrypto.wrapKey()
.
SubtleCrypto.unwrapKey()
.
AesCbcParams