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

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

package com.chatwork.scala.jwk

import com.github.j5ik2o.base64scala.Base64String

case class OtherPrimesInfo(
    r: Base64String,
    d: Base64String,
    t: Base64String
) {
  require(r.urlSafe)
  require(d.urlSafe)
  require(t.urlSafe)

  val primeFactor          = r
  val factorCRTExponent    = d
  val factorCRTCoefficient = t
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy