Implements

Constructors

Properties

state: AuthKeysState

Methods

  • Delete all stored auth keys, including both permanent and temp keys

    MUST be applied immediately, without batching

    Returns void

  • Delete all stored auth keys for the given DC, including both permanent and temp keys

    MUST be applied immediately, without batching

    Parameters

    • dc: number

    Returns void

  • Get auth_key for the given DC

    Parameters

    • dc: number

    Returns null | Uint8Array

  • Given the DC id, idx and point in time (in seconds), return the temp_auth_key that should be used for the next request (such that now < key.expires), or null if no such key exists

    Parameters

    • dc: number
    • idx: number
    • now: number

    Returns null | Uint8Array

  • Store auth_key for the given DC

    If key is null, the key should be deleted instead

    MUST be applied immediately, without batching

    Parameters

    • dc: number
    • key: null | Uint8Array

    Returns void

  • Store temp_auth_key for the given DC and idx, along with its expiration date (in seconds)

    If key is null, the key should be deleted instead

    MUST be applied immediately, without batching

    Parameters

    • dc: number
    • idx: number
    • key: null | Uint8Array
    • expires: number

    Returns void