| 1460 | } |
| 1461 | |
| 1462 | void SrvAuthBlock::putData(CheckStatusWrapper* status, unsigned int length, const void* data) |
| 1463 | { |
| 1464 | status->init(); |
| 1465 | try |
| 1466 | { |
| 1467 | memcpy(dataFromPlugin.getBuffer(length), data, length); |
| 1468 | } |
| 1469 | catch (const Exception& ex) |
| 1470 | { |
| 1471 | ex.stuffException(status); |
| 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | ICryptKey* SrvAuthBlock::newKey(CheckStatusWrapper* status) |
| 1476 | { |
no test coverage detected