Re: UUID3 implementation for Guile

2018-01-09 Thread pelzflorian (Florian Pelz)
On Tue, Jan 09, 2018 at 11:00:26AM +0100, Amirouche Boubekki wrote: > […] > I think it's better to rely on libgcrypt and gnutls. I don't > do that myself, yet, because industria is the easy solution. > > The problem with industria is that we are not sure it's used > by people and that the cryptogr

Re: UUID3 implementation for Guile

2018-01-09 Thread Amirouche Boubekki
Le 2018-01-08 15:58, pelzflorian (Florian Pelz) a écrit : Hello, I need to generate a unique deterministic ID for Haunt and other Web stuff. Therefore I implemented UUID version 3 and MD5 by myself. But I wonder: * Why is UUID3 support not in Guile proper? Does it belong there? Should I su

Re: UUID3 implementation for Guile

2018-01-08 Thread pelzflorian (Florian Pelz)
On Mon, Jan 08, 2018 at 03:58:01PM +0100, pelzflorian (Florian Pelz) wrote: > P.S. If and only if you want to check it out, this is my current > implementation. It should probably be made to accept messages from > ports instead of taking a complete bytevector as input. > I forgot to mention; (u

UUID3 implementation for Guile

2018-01-08 Thread pelzflorian (Florian Pelz)
Hello, I need to generate a unique deterministic ID for Haunt and other Web stuff. Therefore I implemented UUID version 3 and MD5 by myself. But I wonder: * Why is UUID3 support not in Guile proper? Does it belong there? Should I submit a patch? * Is there already a better implementation ou