All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spring.turbo.module.jwt.alg.JwtSigner Maven / Gradle / Ivy

The newest version!
package spring.turbo.module.jwt.alg;

import java.io.Serializable;

/**
 * JWT签名算法 
* 标记型接口 * * @author 应卓 * @see KeyPairJwtSigner * @see SecretKeyJwtSigner * @since 3.3.2 */ public sealed interface JwtSigner extends Serializable permits KeyPairJwtSigner, SecretKeyJwtSigner { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy