Layer 224
constructor
inputCheckPasswordSRP#d27ff082 srp_id:long A:bytes M1:bytes = InputCheckPasswordSRP;

Parameters

Name Type Description
SrpId long SRP ID
A bytes A parameter (see SRP )
M1 bytes M 1 parameter (see SRP )

Gogram Example

// Creating InputCheckPasswordSrpObj constructor
obj := &tg.InputCheckPasswordSrpObj{
    SrpId: int64(1234567890),
    A: []byte{0x01, 0x02, 0x03},
    M1: []byte{0x01, 0x02, 0x03},
}