Interface EncryptedCredentials

Contains encrypted Telegram Passport data credentials.

interface EncryptedCredentials {
    @type: "encryptedCredentials";
    data: string;
    hash: string;
    secret: string;
}

Properties

Properties

@type: "encryptedCredentials"
data: string

The encrypted credentials.

hash: string

The decrypted data hash.

secret: string

Secret for data decryption, encrypted with the service's public key.