Talk:SHA-256: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "== Perl6 implementation takes all input in memory == The current implementation takes all data at once, which is not a good idea if the data is large. Ideally the function sh...")
 
Line 1: Line 1:
== Perl6 implementation takes all input in memory ==
== [[Perl 6]] implementation takes all input in memory ==
The current implementation takes all data at once, which is not a good idea if the data is large.
The current implementation takes all data at once, which is not a good idea if the data is large.

Ideally the function should be able to take a possibly lazy list of buffers.
Ideally the function should be able to take a possibly lazy list of buffers.

All suggestions welcome.
All suggestions welcome.

--[[User:Grondilu|Grondilu]] ([[User talk:Grondilu|talk]]) 20:46, 23 April 2013 (UTC)
--[[User:Grondilu|Grondilu]] ([[User talk:Grondilu|talk]]) 20:46, 23 April 2013 (UTC)

Revision as of 23:34, 23 April 2013

Perl 6 implementation takes all input in memory

The current implementation takes all data at once, which is not a good idea if the data is large. Ideally the function should be able to take a possibly lazy list of buffers. All suggestions welcome. --Grondilu (talk) 20:46, 23 April 2013 (UTC)