【发布时间】:2016-03-06 18:03:15
【问题描述】:
Crypto++有StringSource、ArraySource、FileSource等
但我需要使用可以从 ByteQueue 获取数据的源类,以便将来通过过滤器和接收器。
即:
_QUEUE_Source( MyPreparedQueue, true,
new HashFilter(hash,
new FileSink(zOutputFile),
true));
如果没有将 MyPreparedQueue 发送到额外的中间内存缓冲区和选择 ArraySource,我该怎么做?
【问题讨论】:
标签: c++ encryption cryptography crypto++