[
https://issues.apache.org/jira/browse/CRYPTO-125?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15868465#comment-15868465
]
Marcelo Vanzin commented on CRYPTO-125:
---------------------------------------
I filed CRYPTO-135 to track fixing that issue.
> CryptoOutputStream does not call write in a loop when underlying channel
> works in non-block mode.
> -------------------------------------------------------------------------------------------------
>
> Key: CRYPTO-125
> URL: https://issues.apache.org/jira/browse/CRYPTO-125
> Project: Commons Crypto
> Issue Type: Bug
> Components: Stream
> Affects Versions: 1.0.0
> Reporter: Junjie Chen
> Assignee: Junjie Chen
> Fix For: 1.1.0
>
>
> The encrypt function call output.write without loop which lead to data loss
> when creating the output encryption stream with a SocketChannel and works in
> non-block mode.
> As suggested, it should be call as following way:
> while(buf.hasRemaining()) {
> channel.write(buf);
> }
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)