安全上下文
此特征只可用于
安全上下文
(HTTPS),在某些或所有
支持浏览器
.
signature
只读特性在
AuthenticatorAssertionResponse
interface is an
ArrayBuffer
object which is the signature of the authenticator for both
AuthenticatorAssertionResponse.authenticatorData
and a SHA-256 hash of the client data (
AuthenticatorAssertionResponse.clientDataJSON
).
This signature will be sent to the server for control, as part of the response. It provides the proof that an authenticator does possess the private key which was used for the credential's generation.
注意:
An
AuthenticatorAssertionResponse
instance is available on
PublicKeyCredential.response
after calling
navigator.credentials.get()
.
注意:
This property may only be used in top-level contexts and will not be available in an
<iframe>
例如。
signature = authenticatorAssertionResponse.signature
ArrayBuffer
object which the signature of the authenticator (using its private key) for both
AuthenticatorAssertionResponse.authenticatorData
and a SHA-256 hash given by the client for its data (the challenge, the origin, etc. and available from
AuthenticatorAssertionResponse.clientDataJSON
).
var options = {
challenge: new Uint8Array(26), // will be another value, provided by the relying party server
timeout: 60000
};
navigator.credentials.get({ publickey: options })
.then(function (assertionPKCred) {
var signature = assertionPKCred.response.signature;
// Send response and client extensions to the server so that it can
// go on with the authentication
}).catch(function (err) {
console.error(err);
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web Authentication: An API for accessing Public Key Credentials Level 1
The definition of 'signature' in that specification. |
推荐 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
signature
|
Chrome
67
|
Edge 18 |
Firefox
60
|
IE No | Opera No | Safari 13 | WebView Android 70 | Chrome Android 70 |
Firefox Android
60
|
Opera Android No | Safari iOS 13.3 | Samsung Internet Android No |
完整支持
不支持
见实现注意事项。
用户必须明确启用此特征。
AuthenticatorAssertionResponse
authenticatorData
signature
userHandle