org.pac4j.jwt.config.encryption.SecretEncryptionConfiguration Java Examples
The following examples show how to use
org.pac4j.jwt.config.encryption.SecretEncryptionConfiguration.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ShiroConfiguration.java From springboot-shiro-cas-mybatis with MIT License | 4 votes |
/** * JWT Token 生成器,对CommonProfile生成然后每次携带token访问 * @return */ @SuppressWarnings("rawtypes") @Bean protected JwtGenerator jwtGenerator() { return new JwtGenerator(new SecretSignatureConfiguration(salt), new SecretEncryptionConfiguration(salt)); }
Example #2
Source File: ShiroConfiguration.java From wolf with MIT License | 4 votes |
/** * JWT Token 生成器,对CommonProfile生成然后每次携带token访问 * @return */ @Bean protected JwtGenerator jwtGenerator() { return new JwtGenerator(new SecretSignatureConfiguration(salt), new SecretEncryptionConfiguration(salt)); }