Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /**
* Interface representing the cryptographic keys used in Web Push Protocol.
* These keys are essential for the encryption of push notification payloads,
* ensuring secure delivery of messages through public push services.
*/
export interface UpdateCallDataSubscriptionKeys {
/**
* The P-256 Diffie-Hellman public key.
* Used by the push service for encrypting the message data.
*/
a: string;
/**
* Authentication secret.
* Used to authenticate the sender and prevent unauthorized notifications.
*/
b: string;
}
|