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

com.auth0.jwt.interfaces.Signature Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
package com.auth0.jwt.interfaces;

/**
 * The Signature class represents the 3rd part of the JWT, where the Signature value is hold.
 */
public interface Signature {

    /**
     * Getter for the Signature contained in the JWT as a Base64 encoded String.
     *
     * @return the Signature of the JWT.
     */
    String getSignature();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy