Skip to content

Commit 1b15b6b

Browse files
author
Manu Drijvers
committed
[FAB-10470] remove idemix revocation pk check
Since we're not supporting idemix revocation yet, we omit the check on the revocation public key for now. Change-Id: Idfe087fba83e5af6c162385f1b656f7bbe100659 Signed-off-by: Manu Drijvers <mdr@zurich.ibm.com>
1 parent 2be2d00 commit 1b15b6b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

idemix/signature.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,6 @@ func (sig *Signature) Ver(Disclosure []byte, ipk *IssuerPublicKey, msg []byte, a
211211

212212
HiddenIndices := hiddenIndices(Disclosure)
213213

214-
err := VerifyEpochPK(revPk, sig.RevocationEpochPk, sig.RevocationPkSig, epoch, RevocationAlgorithm(sig.NonRevocationProof.RevocationAlg))
215-
if err != nil {
216-
return errors.Wrap(err, "signature is based on an invalid revocation epoch public key")
217-
}
218-
219214
APrime := EcpFromProto(sig.GetAPrime())
220215
ABar := EcpFromProto(sig.GetABar())
221216
BPrime := EcpFromProto(sig.GetBPrime())

0 commit comments

Comments
 (0)