Re: Patch 7.4.399

2014-08-15 Fir de Conversatie Christian Brabandt
On Do, 14 Aug 2014, Bram Moolenaar wrote: > Christian Brabandt wrote: > > > On So, 10 Aug 2014, Bram Moolenaar wrote: > > > > > Patch 7.4.399 > > > Problem:Encryption implementation is messy. Blowfish encryption has a > > > weakness. >

Re: Patch 7.4.399

2014-08-14 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On So, 10 Aug 2014, Bram Moolenaar wrote: > > > Patch 7.4.399 > > Problem:Encryption implementation is messy. Blowfish encryption has a > > weakness. > > Solution: Refactor the encryption, store the state in an allocated

Re: Patch 7.4.399

2014-08-14 Fir de Conversatie Christian Brabandt
On So, 10 Aug 2014, Bram Moolenaar wrote: > Patch 7.4.399 > Problem:Encryption implementation is messy. Blowfish encryption has a > weakness. > Solution: Refactor the encryption, store the state in an allocated struct > instead of using a save/re

Re: Re: Patch 7.4.399

2014-08-11 Fir de Conversatie Kazunobu Kuriyama
- Original Message - >To: Kazunobu Kuriyama >Subject: Re: Patch 7.4.399 >Cc: vim_dev@googlegroups.com >From: Bram Moolenaar >Date: Mon, 11 Aug 2014 10:51:31 +0200 > > > >Kazunobu Kuriyama wrote: > >> > >> > Patch 7.4.399 >> >

Re: Patch 7.4.399

2014-08-11 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > > > > Patch 7.4.399 > > Problem:Encryption implementation is messy. Blowfish encryption has a > > weakness. > > Solution: Refactor the encryption, store the state in an allocated struct > > instead of using

Re: Patch 7.4.399

2014-08-10 Fir de Conversatie Kazunobu Kuriyama
On Aug 10, 2014, at 20:38, Bram Moolenaar wrote: > > Patch 7.4.399 > Problem:Encryption implementation is messy. Blowfish encryption has a > weakness. > Solution: Refactor the encryption, store the state in an allocated struct > instead of us

Re: Patch 7.4.399

2014-08-10 Fir de Conversatie Bram Moolenaar
Zeug wrote: > I get a pretty lot of unresolved symbols with this build. > (MSVC 2010) > > > ex_docmd.obj : error LNK2001: Nicht aufgelöstes externes Symbol > > "_crypt_get_key". > > fileio.obj : error LNK2001: Nicht aufgelöstes externes Symbol > > "_crypt_encode_alloc". > > fileio.obj : error

Re: Patch 7.4.399

2014-08-10 Fir de Conversatie tux.
I get a pretty lot of unresolved symbols with this build. (MSVC 2010) > ex_docmd.obj : error LNK2001: Nicht aufgelöstes externes Symbol > "_crypt_get_key". > fileio.obj : error LNK2001: Nicht aufgelöstes externes Symbol > "_crypt_encode_alloc". > fileio.obj : error LNK2001: Nicht aufgelöstes ext

Patch 7.4.399

2014-08-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.399 Problem:Encryption implementation is messy. Blowfish encryption has a weakness. Solution: Refactor the encryption, store the state in an allocated struct instead of using a save/restore mechanism. Introduce the "blowfish2" met