| 483 | } |
| 484 | |
| 485 | SecByteBlock HexDecodeString(const char *hex) |
| 486 | { |
| 487 | StringSource ss(hex, true, new HexDecoder); |
| 488 | SecByteBlock result((size_t)ss.MaxRetrievable()); |
| 489 | ss.Get(result, result.size()); |
| 490 | return result; |
| 491 | } |
| 492 | |
| 493 | void GenerateRSAKey(unsigned int keyLength, const char *privFilename, const char *pubFilename, const char *seed) |
| 494 | { |
no test coverage detected