Package io.didomi.sdk.user
Interface UserAuthParams
-
- All Implemented Interfaces:
-
android.os.Parcelable,io.didomi.sdk.user.UserAuth
public interface UserAuthParams implements UserAuth
Interface for User Authentication Parameters declare the common properties of encryption / hash parameters
-
-
Method Summary
Modifier and Type Method Description abstract StringgetAlgorithm()Algorithm used for computing the user ID abstract StringgetSecretId()ID of the secret used for computing the user ID abstract LonggetExpiration()Expiration date as timestamp (to prevent replay attacks) -
-
Method Detail
-
getAlgorithm
abstract String getAlgorithm()
Algorithm used for computing the user ID
-
getSecretId
abstract String getSecretId()
ID of the secret used for computing the user ID
-
getExpiration
abstract Long getExpiration()
Expiration date as timestamp (to prevent replay attacks)
-
-
-
-