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

com.chatwork.scala.jwk.AssymetricJWK.scala Maven / Gradle / Ivy

package com.chatwork.scala.jwk

import java.security.{ KeyPair, PrivateKey, PublicKey }

import com.chatwork.scala.jwk.JWKError.{ KeyCreationError, PrivateKeyCreationError, PublicKeyCreationError }

trait AssymetricJWK {

  def toPublicKey: Either[PublicKeyCreationError, PublicKey]

  def toPrivateKey: Either[PrivateKeyCreationError, PrivateKey]

  def toKeyPair: Either[KeyCreationError, KeyPair]

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy