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

pl.setblack.lsa.cryptotpyrc.CryptoKey.scala Maven / Gradle / Ivy

The newest version!
package pl.setblack.lsa.cryptotpyrc

import scala.concurrent.Future

trait CryptoKey {
  def export : Future[String]
}

trait PrivateKey extends CryptoKey

trait PublicKey extends CryptoKey

case class KeyPair[PUBLIC, PRIVATE](pub : PUBLIC, priv: PRIVATE) {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy