Show / Hide Table of Contents

Interface ILoginResetResponse

A response to login attempts that indicates the request information is outdated. This response provides the new parameters with which the login attempt should be retried.

Namespace: PKWARE.Smartcrypt.Protocol
Assembly: SmartcryptProtocol.dll
Syntax
public interface ILoginResetResponse

Properties

challenge

The challenge to use when retrying the login attempt.

Declaration
[NotNull]
string challenge { get; set; }
Property Value
Type Description
String

loginRounds

The number of PBKDF rounds to use when retrying the login attempt.

Declaration
int loginRounds { get; set; }
Property Value
Type Description
Int32

loginSalt

The salt to use when retrying the login attempt.

Declaration
[NotNull]
string loginSalt { get; set; }
Property Value
Type Description
String

matched

Always false for this response type.

Declaration
bool matched { get; set; }
Property Value
Type Description
Boolean
See Also
matched

See Also

ILoginOkResponse
Back to top Copyright © 2018 PKWARE, Inc.