Package io.seald.seald_sdk
Class RetrieveIdentityResponse
-
- All Implemented Interfaces:
public final class RetrieveIdentityResponseRetrieveIdentityResponse holds a retrieved identity
-
-
Field Summary
Fields Modifier and Type Field Description private final ByteArrayidentityprivate final BooleanshouldRenewKeyprivate StringauthenticatedSessionId
-
Constructor Summary
Constructors Constructor Description RetrieveIdentityResponse(ByteArray identity, Boolean shouldRenewKey, String authenticatedSessionId)
-
Method Summary
Modifier and Type Method Description final ByteArraygetIdentity()The retrieved identity. final BooleangetShouldRenewKey()If the boolean ShouldRenewKey is set to true, the account MUST renew its private key usingsdk.renewKeys()final StringgetAuthenticatedSessionId()An authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge final UnitsetAuthenticatedSessionId(String authenticatedSessionId)An authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge -
-
Method Detail
-
getIdentity
final ByteArray getIdentity()
The retrieved identity. It can be used with
sdk.importIdentity()
-
getShouldRenewKey
final Boolean getShouldRenewKey()
If the boolean ShouldRenewKey is set to
true, the account MUST renew its private key usingsdk.renewKeys()
-
getAuthenticatedSessionId
final String getAuthenticatedSessionId()
An authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge
-
setAuthenticatedSessionId
final Unit setAuthenticatedSessionId(String authenticatedSessionId)
An authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge
-
-
-
-