![JAR search and dependency download from the Maven repository](/logo.png)
io.scalecube.security.tokens.jwt.KeyProvider Maven / Gradle / Ivy
package io.scalecube.security.tokens.jwt;
import java.security.Key;
import reactor.core.publisher.Mono;
@FunctionalInterface
public interface KeyProvider {
/**
* Finds key for jwt token verification.
*
* @param kid key id token attribute
* @return mono result with key (or error)
*/
Mono findKey(String kid);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy