LinkSecretBlindingData

data class LinkSecretBlindingData constructor(var vPrime: String, var vrPrime: String? = null)(source)

Represents the blinding data used in the Link-Secret protocol. This class is serialized and deserialized using Kotlinx Serialization library.

Parameters

vPrime

The blinding factor generated by the Holder and sent to the Issuer.

vrPrime

The blinded master secret generated by the Holder. Default value is null.

Constructors

Link copied to clipboard
constructor(vPrime: String, vrPrime: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "v_prime")
var vPrime: String
Link copied to clipboard
@SerialName(value = "vr_prime")
var vrPrime: String?