Crypto
interface represents basic cryptography features available in the current context. It allows access to a cryptographically strong random number generator and to cryptographic primitives.
Web 加密 API
is accessed through the
Window.crypto
property, which is a
Crypto
对象。
This interface implements properties defined on
RandomSource
.
Crypto.subtle
只读
安全上下文
SubtleCrypto
object providing access to common cryptographic primitives, like hashing, signing, encryption, or decryption.
This interface implements methods defined on
RandomSource
.
Crypto.getRandomValues()
TypedArray
with cryptographically sound random values.
You should avoid using the Web Crypto API on insecure contexts, even though the
Crypto
interface is present on insecure contexts, as is the
Window.crypto
property. In addition, the
Crypto
方法
getRandomValues()
is available on insecure contexts, but the
subtle
property is not.
In general, you probably should just treat
Crypto
as available only on secure contexts.
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web Cryptography API
The definition of 'Crypto' in that specification. |
推荐 | 初始定义 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
Crypto
|
Chrome 11 | Edge 12 | Firefox 26 | IE 11 | Opera 15 | Safari 6.1 | WebView Android Yes | Chrome Android 18 | Firefox Android 26 | Opera Android 14 | Safari iOS 6.1 | Samsung Internet Android 1.0 |
getRandomValues()
|
Chrome 11 | Edge 12 | Firefox 26 | IE 11 | Opera 15 | Safari 6.1 | WebView Android ≤37 | Chrome Android 18 | Firefox Android 26 | Opera Android 14 | Safari iOS 6.1 | Samsung Internet Android 1.0 |
subtle
|
Chrome 37 | Edge 12 | Firefox 34 | IE 部分支持 11 | Opera 24 |
Safari
10.1
|
WebView Android 37 | Chrome Android 37 | Firefox Android 34 | Opera Android 24 |
Safari iOS
10.3
|
Samsung Internet Android 3.0 |
完整支持
部分支持
实验。期望将来行为有所改变。
用户必须明确启用此特征。
要求使用供应商前缀或不同名称。
Crypto