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

com.gitee.easyopen.jwt.JwtService Maven / Gradle / Ivy

Go to download

easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen

There is a newer version: 1.0.4
Show newest version
package com.gitee.easyopen.jwt;

import com.auth0.jwt.interfaces.Claim;

import java.util.Map;

/**
 * @author tanghc
 */
public interface JwtService {

    /**
     * 创建jwt
     * @param data
     *            内容
     * @return 返回jwt
     * @throws Exception
     */
    String createJWT(Map data);

    /**
     * 校验JWT字符串
     * 
     * @param token jwt字符串
     * @return 验证通过返回对象
     * @throws Exception
     */
    Map verfiyJWT(String token);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy