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

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