* About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!)
@ 2010-04-30 7:31 David MENTRE
2010-04-30 8:14 ` Stéphane Glondu
2010-04-30 15:00 ` About Cryptokit Goswin von Brederlow
0 siblings, 2 replies; 6+ messages in thread
From: David MENTRE @ 2010-04-30 7:31 UTC (permalink / raw)
To: Eray Ozkural; +Cc: Sylvain Le Gall, caml-list
Hello,
2010/4/25 Eray Ozkural <examachine@gmail.com>:
> Well, crypotkit is pretty useful and you can easily add your own
> implementations to it. Nice framework. I had implemented a
> zero-knowledge protocol with it.
I also used Cryptokit once. It was pretty useful and easy to use.
However I had to modify a few lines in it in order to allow me to do
some compositions with Cryptokit building blocks.
Sincerely yours,
david
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!)
2010-04-30 7:31 About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!) David MENTRE
@ 2010-04-30 8:14 ` Stéphane Glondu
2010-04-30 9:16 ` David MENTRE
2010-04-30 15:00 ` About Cryptokit Goswin von Brederlow
1 sibling, 1 reply; 6+ messages in thread
From: Stéphane Glondu @ 2010-04-30 8:14 UTC (permalink / raw)
To: David MENTRE; +Cc: caml-list
David MENTRE a écrit :
> I also used Cryptokit once. It was pretty useful and easy to use.
> However I had to modify a few lines in it in order to allow me to do
> some compositions with Cryptokit building blocks.
Could you be more specific?
Cheers,
--
Stéphane
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!)
2010-04-30 8:14 ` Stéphane Glondu
@ 2010-04-30 9:16 ` David MENTRE
2010-05-11 12:55 ` David MENTRE
0 siblings, 1 reply; 6+ messages in thread
From: David MENTRE @ 2010-04-30 9:16 UTC (permalink / raw)
To: Stéphane Glondu; +Cc: caml-list
Hello Stéphane,
2010/4/30 Stéphane Glondu <steph@glondu.net>:
> David MENTRE a écrit :
>> I also used Cryptokit once. It was pretty useful and easy to use.
>> However I had to modify a few lines in it in order to allow me to do
>> some compositions with Cryptokit building blocks.
>
> Could you be more specific?
Right now no, sorry. I'll try to dig up the patch I needed at that time.
Best regards,
d.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: About Cryptokit
2010-04-30 7:31 About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!) David MENTRE
2010-04-30 8:14 ` Stéphane Glondu
@ 2010-04-30 15:00 ` Goswin von Brederlow
2010-04-30 15:36 ` [Caml-list] " Xavier Leroy
1 sibling, 1 reply; 6+ messages in thread
From: Goswin von Brederlow @ 2010-04-30 15:00 UTC (permalink / raw)
To: David MENTRE; +Cc: Eray Ozkural, Sylvain Le Gall, caml-list
David MENTRE <dmentre@linux-france.org> writes:
> Hello,
>
> 2010/4/25 Eray Ozkural <examachine@gmail.com>:
>> Well, crypotkit is pretty useful and you can easily add your own
>> implementations to it. Nice framework. I had implemented a
>> zero-knowledge protocol with it.
>
> I also used Cryptokit once. It was pretty useful and easy to use.
> However I had to modify a few lines in it in order to allow me to do
> some compositions with Cryptokit building blocks.
>
> Sincerely yours,
> david
Does cryptokit support digesting Bigarrays?
MfG
Goswin
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Caml-list] Re: About Cryptokit
2010-04-30 15:00 ` About Cryptokit Goswin von Brederlow
@ 2010-04-30 15:36 ` Xavier Leroy
0 siblings, 0 replies; 6+ messages in thread
From: Xavier Leroy @ 2010-04-30 15:36 UTC (permalink / raw)
To: caml-list
> Does cryptokit support digesting Bigarrays?
Currently no, but your PR#5005 made me think that it could be a good
idea to add this functionality.
- Xavier Leroy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!)
2010-04-30 9:16 ` David MENTRE
@ 2010-05-11 12:55 ` David MENTRE
0 siblings, 0 replies; 6+ messages in thread
From: David MENTRE @ 2010-05-11 12:55 UTC (permalink / raw)
To: Stéphane Glondu; +Cc: caml-list
Hello Séphane,
2010/4/30 David MENTRE <dmentre@linux-france.org>:
> 2010/4/30 Stéphane Glondu <steph@glondu.net>:
>> David MENTRE a écrit :
>>> I also used Cryptokit once. It was pretty useful and easy to use.
>>> However I had to modify a few lines in it in order to allow me to do
>>> some compositions with Cryptokit building blocks.
>>
>> Could you be more specific?
>
> Right now no, sorry. I'll try to dig up the patch I needed at that time.
I think this is the patch I used:
http://svn.gna.org/viewcvs/diseba/trunk/cryptokit-1.3-hmac256.patch?rev=13&view=auto
Here is some code that used the added functionalities:
http://svn.gna.org/viewcvs/diseba/trunk/disk.ml?rev=18&r1=17&r2=18
All of this is quite old and might be no longer needed with more
recent CryptoKit.
More generally, this never-finished OCaml project was based on CryptoKit:
http://svn.gna.org/viewcvs/diseba/trunk/#dirlist
https://gna.org/projects/diseba/
Best regards,
david
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-05-11 12:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-30 7:31 About Cryptokit (was: Re: [Caml-list] Re: SHA1 => stdlib ?!) David MENTRE
2010-04-30 8:14 ` Stéphane Glondu
2010-04-30 9:16 ` David MENTRE
2010-05-11 12:55 ` David MENTRE
2010-04-30 15:00 ` About Cryptokit Goswin von Brederlow
2010-04-30 15:36 ` [Caml-list] " Xavier Leroy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox