diff --git a/validat2.cpp b/validat2.cpp index f22b020e..f6421c3f 100644 --- a/validat2.cpp +++ b/validat2.cpp @@ -518,21 +518,10 @@ bool ValidateRW() cout << "\nRW validation suite running...\n\n"; bool pass=true; - { - FileSource f("TestData/rw1024.dat", true, new HexDecoder); - RWSS::Signer priv(f); - RWSS::Verifier pub(priv); - pass = pass && SignatureValidate(priv, pub); - } - { - cout << "Turning off blinding..." << endl; - - FileSource f("TestData/rw1024.dat", true, new HexDecoder); - RWSS::Signer priv(f); - priv.AccessKey().SetEnableBlinding(false); - RWSS::Verifier pub(priv); - pass = pass && SignatureValidate(priv, pub); - } + FileSource f("TestData/rw1024.dat", true, new HexDecoder); + RWSS::Signer priv(f); + RWSS::Verifier pub(priv); + pass = pass && SignatureValidate(priv, pub); return pass; }