Decode and store the public key
| 556 | |
| 557 | // Decode and store the public key |
| 558 | void DSS::DSSImpl::SetPublic(const byte* key, unsigned int sz) |
| 559 | { |
| 560 | TaoCrypt::Source source(key, sz); |
| 561 | publicKey_.Initialize(source); |
| 562 | } |
| 563 | |
| 564 | |
| 565 | // Decode and store the public key |
no test coverage detected