com.henricook.tls.TLS.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cryptoutils_2.13 Show documentation
Show all versions of cryptoutils_2.13 Show documentation
Cryptoutils for Scala 2.12 and 2.13 - Forked from Karasiq
The newest version!
package com.henricook.tls
object TLS {
type CertificateChain = org.bouncycastle.crypto.tls.Certificate
type Certificate = org.bouncycastle.asn1.x509.Certificate
type CertificateKeyPair = org.bouncycastle.crypto.AsymmetricCipherKeyPair
case class CertificateKey(
certificateChain: CertificateChain,
key: CertificateKeyPair
) {
def certificate: TLS.Certificate = {
import com.henricook.tls.internal.BCConversions._
certificateChain.toTlsCertificate
}
}
case class KeySet(
rsa: Option[CertificateKey] = None,
dsa: Option[CertificateKey] = None,
ecdsa: Option[CertificateKey] = None
)
}