InputCheckPasswordSRP

class pyrogram.raw.base.InputCheckPasswordSRP

Constructors for checking the validity of a 2FA SRP password.

Constructors:

This base type has 2 constructors available.

InputCheckPasswordEmpty

There is no password

InputCheckPasswordSRP

Constructor for checking the validity of a 2FA SRP password (see SRP)

TL Schema

inputCheckPasswordSRP#d27ff082
srp_id:long
A:bytes
M1:bytes

= InputCheckPasswordSRP

Parameter Tree

InputCheckPasswordSRP
├── srp_idlong
├── Abytes
└── M1bytes

Example

InputCheckPasswordSRP(
    srp_id=0,
    A=b"data",
    M1=b"data",
)