DSS Verify message of length sz against sig, is it correct?
| 608 | |
| 609 | // DSS Verify message of length sz against sig, is it correct? |
| 610 | bool DSS::verify(const byte* sha_digest, unsigned int /* shaSz */, |
| 611 | const byte* sig, unsigned int /* sigSz */) |
| 612 | { |
| 613 | using namespace TaoCrypt; |
| 614 | |
| 615 | DSA_Verifier ver(pimpl_->publicKey_); |
| 616 | return ver.Verify(sha_digest, sig); |
| 617 | } |
| 618 | |
| 619 | |
| 620 | // Implementation of RSA key interface |
no test coverage detected