Skip to content

Commit

Permalink
[FAB-10470] remove idemix revocation pk check
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Manu Drijvers committed May 30, 2018
1 parent 2be2d00 commit 1b15b6b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions idemix/signature.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,6 @@ func (sig *Signature) Ver(Disclosure []byte, ipk *IssuerPublicKey, msg []byte, a

HiddenIndices := hiddenIndices(Disclosure)

err := VerifyEpochPK(revPk, sig.RevocationEpochPk, sig.RevocationPkSig, epoch, RevocationAlgorithm(sig.NonRevocationProof.RevocationAlg))
if err != nil {
return errors.Wrap(err, "signature is based on an invalid revocation epoch public key")
}

APrime := EcpFromProto(sig.GetAPrime())
ABar := EcpFromProto(sig.GetABar())
BPrime := EcpFromProto(sig.GetBPrime())
Expand Down

0 comments on commit 1b15b6b

Please sign in to comment.