Set public or private key
| 574 | |
| 575 | // Set public or private key |
| 576 | DSS::DSS(const byte* key, unsigned int sz, bool publicKey) |
| 577 | : pimpl_(NEW_YS DSSImpl) |
| 578 | { |
| 579 | if (publicKey) |
| 580 | pimpl_->SetPublic(key, sz); |
| 581 | else |
| 582 | pimpl_->SetPrivate(key, sz); |
| 583 | } |
| 584 | |
| 585 | |
| 586 | DSS::~DSS() |
nothing calls this directly
no test coverage detected