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.StringgetEndSalt()Obtains the end salt.java.lang.StringgetInitVector()Obtains the init vector.java.security.KeygetKey()Obtains theKey.java.lang.StringgetLace()Obtains the lace.java.lang.StringgetStartSalt()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:
Keyto encrypt/decrypt the refresh token.
-
-