[Haskell-cafe] Patch: adding CTR, CMAC and SIV modes to the Crypto API

2011-04-08 Thread klondike
it along with your library with a BSD-3 license as long as you recognize the authorship. Francisco Blas Izquierdo Riera (klondike) PS: Attached is also a set of commands I used with ghci to check quickly the implementation and which contain parts of the KATS I used, feel free to use them. diff -ur

Re: [Haskell-cafe] Where are the haskell elders?

2010-03-29 Thread klondike
El 30/03/10 01:19, Ivan Miljenovic escribió: 2010/3/30 Don Stewart d...@galois.com: I notice that posts from the Haskell elders are pretty rare now. Only every now and then we hear from them. How come? Because there is too much noise on this list, Günther And they have

Re: [Haskell-cafe] Re: [Haskell] ANNOUNCE: control-monad-exception 0.5 with monadic call traces

2009-12-07 Thread klondike
Henning Thielemann escribió: A library function that reads a config file may declare to be able to throw the exception File not found, or it may introduce a new exception Could not read Config file with an extra field for the reason, why the file could not be read. This way you can construct a

Re: [Haskell-cafe] Help mixing pure and IO code

2009-11-30 Thread klondike
Eric Dedieu escribió: Still more importantly to me, I understand that anyhow if I intend to use IO or random numbers, I must design my strategy from the beginning as encapsulated in a monad. Something like: class (Monad m) = Strategy m a where ... That's not true at all, you can always

Re: [Haskell-cafe] Help mixing pure and IO code

2009-11-29 Thread klondike
papa.e...@free.fr escribió: Hi haskell helpers, Learning haskell, I wanted to explore how to write pure code and then add some IO on top of it, keeping the main code pure. The idea was to write a very simple two-player game, then define some strategies to play it that do not involve IO, and

Re: [Haskell-cafe] Re: [Haskell] ANNOUNCE: control-monad-exception 0.5 with monadic call traces

2009-11-07 Thread klondike
Luke Palmer escribió: On Fri, Nov 6, 2009 at 6:54 PM, klondike klondikehaskellc...@xiscosoft.es wrote: Henning Thielemann escribió: That's what I meant with my post: Programming errors (like head []) are not handled by control-monad-exception. As far as I understand, control-monad