Re: [PATCH 0/2] Add TLS record layer encryption module

2014-08-25 Thread Hannes Frederic Sowa
Hi, On Di, 2014-07-29 at 12:32 +0300, Cristian Stoica wrote: > This set of patches introduces support for TLS 1.0 record layer > encryption/decryption with a corresponding algorithm called > tls10(hmac(),cbc()). > > Similarly to authenc.c on which it is based, this module mixes the base >

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-08-25 Thread Herbert Xu
On Thu, Jul 31, 2014 at 12:59:45PM -0700, Andy Lutomirski wrote: > > What is this used for? AF_ALG? I find it hard to believe that the > kernel will ever want to use this internally. There have been discussions over the years regarding implementing TLS/SSL in the kernel so it is not

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-08-25 Thread Herbert Xu
On Thu, Jul 31, 2014 at 12:59:45PM -0700, Andy Lutomirski wrote: What is this used for? AF_ALG? I find it hard to believe that the kernel will ever want to use this internally. There have been discussions over the years regarding implementing TLS/SSL in the kernel so it is not inconceivable

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-08-25 Thread Hannes Frederic Sowa
Hi, On Di, 2014-07-29 at 12:32 +0300, Cristian Stoica wrote: This set of patches introduces support for TLS 1.0 record layer encryption/decryption with a corresponding algorithm called tls10(hmac(hash),cbc(cipher)). Similarly to authenc.c on which it is based, this module mixes the base

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-08-01 Thread Cristian Stoica
>> This set of patches introduces support for TLS 1.0 record layer >> encryption/decryption with a corresponding algorithm called >> tls10(hmac(),cbc()). >> >> Similarly to authenc.c on which it is based, this module mixes the base >> algorithms in software to produce an algorithm that does record

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-08-01 Thread Cristian Stoica
This set of patches introduces support for TLS 1.0 record layer encryption/decryption with a corresponding algorithm called tls10(hmac(hash),cbc(cipher)). Similarly to authenc.c on which it is based, this module mixes the base algorithms in software to produce an algorithm that does record

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-07-31 Thread Andy Lutomirski
On 07/29/2014 02:32 AM, Cristian Stoica wrote: > Hi all, > > This set of patches introduces support for TLS 1.0 record layer > encryption/decryption with a corresponding algorithm called > tls10(hmac(),cbc()). > > Similarly to authenc.c on which it is based, this module mixes the base >

Re: [PATCH 0/2] Add TLS record layer encryption module

2014-07-31 Thread Andy Lutomirski
On 07/29/2014 02:32 AM, Cristian Stoica wrote: Hi all, This set of patches introduces support for TLS 1.0 record layer encryption/decryption with a corresponding algorithm called tls10(hmac(hash),cbc(cipher)). Similarly to authenc.c on which it is based, this module mixes the base

[PATCH 0/2] Add TLS record layer encryption module

2014-07-29 Thread Cristian Stoica
Hi all, This set of patches introduces support for TLS 1.0 record layer encryption/decryption with a corresponding algorithm called tls10(hmac(),cbc()). Similarly to authenc.c on which it is based, this module mixes the base algorithms in software to produce an algorithm that does record layer

[PATCH 0/2] Add TLS record layer encryption module

2014-07-29 Thread Cristian Stoica
Hi all, This set of patches introduces support for TLS 1.0 record layer encryption/decryption with a corresponding algorithm called tls10(hmac(hash),cbc(cipher)). Similarly to authenc.c on which it is based, this module mixes the base algorithms in software to produce an algorithm that does