Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Michael Van Canneyt
On Sun, 20 Mar 2016, Jy V wrote: On Sun, Mar 20, 2016 at 1:10 PM, Garry Wood wrote: Yes, the intent is to support https with TLS 1.0/1.1/1.2 so AES_128_GCM_SHA256 will be included in the cipher suite. Pure FreePascal code only ? no dependency with OpenSSL (or third party libraries) ? ->

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Jy V
On Sun, Mar 20, 2016 at 1:10 PM, Garry Wood wrote: > Yes, the intent is to support https with TLS 1.0/1.1/1.2 so > AES_128_GCM_SHA256 will be included in the cipher suite. > Pure FreePascal code only ? no dependency with OpenSSL (or third party libraries) ? -> this would be absolute great news !

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Garry Wood
On Mar 20, 2016 10:19 PM, Jy V wrote: > > > >> On Sun, Mar 20, 2016 at 2:11 AM, Garry Wood wrote: >>> >>>  I recently ported the implementation from LibTimCrypt / wpa_supplicant >>> (which are both from public domain implementations), you can find the unit >>> here: >>> >>> https://github.com/

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Garry Wood
On Mar 20, 2016 10:17 PM, Jy V wrote: > > > On Sun, Mar 20, 2016 at 2:11 AM, Garry Wood wrote: >> >>  I recently ported the implementation from LibTimCrypt / wpa_supplicant >> (which are both from public domain implementations), you can find the unit >> here: >> >> https://github.com/ultibohub

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Jy V
On Sun, Mar 20, 2016 at 2:11 AM, Garry Wood wrote: > >> I recently ported the implementation from LibTimCrypt / wpa_supplicant >> (which are both from public domain implementations), you can find the unit >> here: >> >> >> https://github.com/ultibohub/Core/blob/master/source/rtl/ultibo/core/crypt

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Jy V
On Sun, Mar 20, 2016 at 2:11 AM, Garry Wood wrote: > I recently ported the implementation from LibTimCrypt / wpa_supplicant > (which are both from public domain implementations), you can find the unit > here: > > > https://github.com/ultibohub/Core/blob/master/source/rtl/ultibo/core/crypto.pas >

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Garry Wood
On Mar 20, 2016 8:14 PM, Michael Van Canneyt wrote: > > > > On Sun, 20 Mar 2016, Garry Wood wrote: > > >> I'm trying to write a sha256 implementation in pure pascal like sha1 and > >> md5 units. > >> With negative results. > >> Someone can helpme with this? > > > > I recently ported the implemen

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Michael Van Canneyt
On Sun, 20 Mar 2016, Garry Wood wrote: I'm trying to write a sha256 implementation in pure pascal like sha1 and md5 units. With negative results. Someone can helpme with this? I recently ported the implementation from LibTimCrypt / wpa_supplicant (which are both from public domain implemen

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread Alcom
Check out dcpcrypt2 (http://wiki.lazarus.freepascal.org/DCPcrypt) The latest stable release can be found on the Lazarus-CCR Files page. ___ fpc-devel maillist - fpc-devel@lists.freepascal.or

[fpc-devel] Implementing SHA256 Unit.

2016-03-20 Thread H . Gabriel Máculus
I'm trying to write a sha256 implementation in pure pascal like sha1 and md5 units. With negative results. Someone can helpme with this? -- H. Gabriel Máculus http://twitter.com/gabrielix - https://prism-break.org/ program sha256_test; {$mode objfpc}{$h+} Type

Re: [fpc-devel] Implementing SHA256 Unit.

2016-03-19 Thread Garry Wood
>I'm trying to write a sha256 implementation in pure pascal like sha1 and md5 >units. >With negative results. >Someone can helpme with this? I recently ported the implementation from LibTimCrypt / wpa_supplicant (which are both from public domain implementations), you can find the unit here: h