Layer 220
constructor
secureSecretSettings#1527bcac secure_algo:SecurePasswordKdfAlgo secure_secret:bytes secure_secret_id:long = SecureSecretSettings;

Parameters

Name Type Description
SecureAlgo SecurePasswordKdfAlgo Secure KDF algo
SecureSecret bytes Secure secret
SecureSecretId long Secret ID

Gogram Example

// Creating SecureSecretSettings constructor
obj := &tg.SecureSecretSettings{
    SecureAlgo: &tg.SecurePasswordKdfAlgo{},
    SecureSecret: []byte{},
    SecureSecretId: int64(0),
}