mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
(encode_session_key): Changed the zero random byte
substituting code to actually do clever things. Thanks to Matthias Urlichs for noting the implementation problem.
This commit is contained in:
parent
75ac082a76
commit
bf256b9696
2 changed files with 11 additions and 2 deletions
|
@ -117,11 +117,14 @@ encode_session_key( DEK *dek, unsigned nbits )
|
|||
k++;
|
||||
if( !k )
|
||||
break; /* okay: no zero bytes */
|
||||
k += k/128; /* better get some more */
|
||||
k += k/128 + 3; /* better get some more */
|
||||
pp = get_random_bits( k*8, 1, 1);
|
||||
for(j=0; j < i && k ; j++ )
|
||||
for(j=0; j < i && k ;) {
|
||||
if( !p[j] )
|
||||
p[j] = pp[--k];
|
||||
if (p[j])
|
||||
j++;
|
||||
}
|
||||
m_free(pp);
|
||||
}
|
||||
memcpy( frame+n, p, i );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue