Interface JwtRefreshKey
-
- All Superinterfaces:
JwtAuthorityKey
public interface JwtRefreshKey extends JwtAuthorityKey
JWT refresh key.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEndSalt()
Obtains the end salt.java.lang.String
getInitVector()
Obtains the init vector.java.security.Key
getKey()
Obtains theKey
.java.lang.String
getLace()
Obtains the lace.java.lang.String
getStartSalt()
Obtains the start salt.-
Methods inherited from interface net.officefloor.web.jwt.authority.repository.JwtAuthorityKey
getExpireTime, getStartTime
-
-
-
-
Method Detail
-
getInitVector
java.lang.String getInitVector()
Obtains the init vector.- Returns:
- Init vector.
-
getStartSalt
java.lang.String getStartSalt()
Obtains the start salt.- Returns:
- Start salt.
-
getLace
java.lang.String getLace()
Obtains the lace.- Returns:
- Lace.
-
getEndSalt
java.lang.String getEndSalt()
Obtains the end salt.- Returns:
- End salt.
-
getKey
java.security.Key getKey()
Obtains theKey
.- Returns:
Key
to encrypt/decrypt the refresh token.
-
-