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.
>
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
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
- 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
>> >
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
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
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
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
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