PlatformRSAKeyParameters

data class PlatformRSAKeyParameters(val modulus: Uint8Array, val publicExponent: Uint8Array, val privateExponent: Uint8Array, val primeP: Uint8Array = Uint8Array(0), val primeQ: Uint8Array = Uint8Array(0), val primeExponentP: Uint8Array = Uint8Array(0), val primeExponentQ: Uint8Array = Uint8Array(0), val crtCoefficient: Uint8Array = Uint8Array(0))

RSAKeyParameters をJavaScriptで使用するためのインターフェースです。

JavaScriptでは、RSAKeyParameters という名前で使用できます。

Constructors

Link copied to clipboard
constructor(modulus: Uint8Array, publicExponent: Uint8Array, privateExponent: Uint8Array, primeP: Uint8Array = Uint8Array(0), primeQ: Uint8Array = Uint8Array(0), primeExponentP: Uint8Array = Uint8Array(0), primeExponentQ: Uint8Array = Uint8Array(0), crtCoefficient: Uint8Array = Uint8Array(0))

Properties

Link copied to clipboard
val crtCoefficient: Uint8Array
Link copied to clipboard
val modulus: Uint8Array
Link copied to clipboard
val primeExponentP: Uint8Array
Link copied to clipboard
val primeExponentQ: Uint8Array
Link copied to clipboard
val primeP: Uint8Array
Link copied to clipboard
val primeQ: Uint8Array
Link copied to clipboard
val privateExponent: Uint8Array
Link copied to clipboard
val publicExponent: Uint8Array