Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从流中加载 RSA 密钥并收到“流读取”错误?我应该尝试让我的代码正常工作的第一件事是什么?
有点疯狂的猜测,但是如果在写入后尝试从流中读取时流的位置未重置为 0,则可能会发生这种情况。尝试设置
SigStore.Position := 0;
在使用流加密之前。