class RSA::ACC::NonMembershipProof
Proof of non-membership of the element's not inclusion in the accumulator.
Attributes
d[R]
gv_inv[R]
poe_proof[R]
poke2_proof[R]
v[R]
Public Class Methods
new(d, v, gv_inv, poke2_proof, poe_proof)
click to toggle source
# File lib/rsa/acc/proof.rb, line 40 def initialize(d, v, gv_inv, poke2_proof, poe_proof) @d = d @v = v @gv_inv = gv_inv @poke2_proof = poke2_proof @poe_proof = poe_proof end