mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-10 13:04:23 +01:00
* seskey.c (do_encode_md): Comment about earlier (pre-PGP 2.3) encodings.
* misc.c (compress_algo_to_string): Translate "Uncompressed". Requested by Tommi Vainikainen.
This commit is contained in:
parent
38722f4caa
commit
f909811a73
@ -1,3 +1,11 @@
|
|||||||
|
2003-11-20 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* seskey.c (do_encode_md): Comment about earlier (pre-PGP 2.3)
|
||||||
|
encodings.
|
||||||
|
|
||||||
|
* misc.c (compress_algo_to_string): Translate "Uncompressed".
|
||||||
|
Requested by Tommi Vainikainen.
|
||||||
|
|
||||||
2003-11-15 David Shaw <dshaw@jabberwocky.com>
|
2003-11-15 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* compress-bz2.c (init_compress): Compression level 0 is not
|
* compress-bz2.c (init_compress): Compression level 0 is not
|
||||||
|
@ -547,7 +547,7 @@ compress_algo_to_string(int algo)
|
|||||||
switch(algo)
|
switch(algo)
|
||||||
{
|
{
|
||||||
case COMPRESS_ALGO_NONE:
|
case COMPRESS_ALGO_NONE:
|
||||||
s="Uncompressed";
|
s=_("Uncompressed");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case COMPRESS_ALGO_ZIP:
|
case COMPRESS_ALGO_ZIP:
|
||||||
|
10
g10/seskey.c
10
g10/seskey.c
@ -175,6 +175,16 @@ do_encode_md( MD_HANDLE md, int algo, size_t len, unsigned nbits,
|
|||||||
: mpi_alloc( (nframe+BYTES_PER_MPI_LIMB-1) / BYTES_PER_MPI_LIMB );
|
: mpi_alloc( (nframe+BYTES_PER_MPI_LIMB-1) / BYTES_PER_MPI_LIMB );
|
||||||
mpi_set_buffer( a, frame, nframe, 0 );
|
mpi_set_buffer( a, frame, nframe, 0 );
|
||||||
m_free(frame);
|
m_free(frame);
|
||||||
|
|
||||||
|
/* Note that PGP before version 2.3 encoded the MD as:
|
||||||
|
*
|
||||||
|
* 0 1 MD(16 bytes) 0 PAD(n bytes) 1
|
||||||
|
*
|
||||||
|
* The MD is always 16 bytes here because it's always MD5. We do
|
||||||
|
* not support pre-v2.3 signatures, but I'm including this comment
|
||||||
|
* so the information is easily found in the future.
|
||||||
|
*/
|
||||||
|
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user