1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
|
2006-02-14 Werner Koch <[email protected]>
* errors.h (G10ERR_NO_DATA): New.
2005-12-23 David Shaw <[email protected]>
* util.h: Prototype get_cert().
2005-07-27 Werner Koch <[email protected]>
* memory.h (m_free, m_alloc, m_realloc, m_strdup): Removed and
replaced all over by xfoo functions. This is to ease porting to
gnupg 1.9.
(xmalloc_secure) [M_DEBUG]: Correctly map to m_debug_alloc_secure.
2005-06-23 David Shaw <[email protected]>
* http.h: Fix prototypes for http_open_document and http_open
again, to handle the new different auth for regular files and
proxies.
2005-06-21 David Shaw <[email protected]>
* http.h: Fix prototypes for http_open_document and http_open to
pass in auth and proxyauth.
2005-05-19 Werner Koch <[email protected]>
* util.h: Add definitions for membuf functions.
2005-05-05 David Shaw <[email protected]>
* util.h: Remove add_days_to_timestamp as unused.
2005-04-22 David Shaw <[email protected]>
* distfiles: Add assuan.h.
2005-04-04 Werner Koch <[email protected]>
* memory.h (xcalloc, xcalloc_secure): Replaced macros by functions.
2005-03-31 Werner Koch <[email protected]>
* assuan.h: New. Taken from libassuan 0.6.9.
2005-03-18 David Shaw <[email protected]>
* ttyio.h: Prototype tty_enable_completion(), and
tty_disable_completion().
2005-02-09 David Shaw <[email protected]>
* cipher.h: Add a flag for a symmetric DEK.
2004-12-16 David Shaw <[email protected]>
* memory.h: Return a flag to indicate whether we got the lock.
2004-11-29 David Shaw <[email protected]>
* cipher.h: Add PUBKEY_USAGE_UNKNOWN.
2004-11-03 Timo Schulz <[email protected]>
* errors.h: Add w32_strerror prototype.
* dynload.h: Use w32_strerror.
2004-10-27 Werner Koch <[email protected]>
* dynload.h: Always use it for _WIN32.
2004-10-21 Werner Koch <[email protected]>
* util.h [!HAVE_VASPRINTF]: Removed prototype.
2004-10-15 Werner Koch <[email protected]>
* util.h [!HAVE_VASPRINTF]: Add asprintf prototype.
2004-10-13 David Shaw <[email protected]>
* keyserver.h: Add KEYSERVER_TIMEOUT.
2004-09-30 David Shaw <[email protected]>
* util.h: Prototype destroy_dotlock(). From Werner on stable
branch.
2004-09-10 David Shaw <[email protected]>
* http.h: Add auth field for a parsed_uri to allow for basic auth.
2004-09-09 Werner Koch <[email protected]>
* errors.h (G10ERR_NO_CARD, G10ERR_CANCELED): New error codes.
2004-04-27 Werner Koch <[email protected]>
* mpi.h: Renamed prototype parameter name to avoid gcc warnings.
2004-03-04 David Shaw <[email protected]>
* iobuf.h: Remove iobuf_set_block_mode() and
iobuf_in_block_mode().
2004-02-21 David Shaw <[email protected]>
* util.h: Prototype for hextobyte().
2004-01-16 David Shaw <[email protected]>
* cipher.h: Remove the old CIPHER_ALGO_RINJDAEL values.
is_ELGAMAL() now only matches type 16 and not type 20.
2004-01-15 David Shaw <[email protected]>
* util.h: Add prototype for print_string2().
2003-12-28 David Shaw <[email protected]>
* http.h: Pass the http proxy from outside rather than pulling it
from the evironment.
2003-12-28 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Removal of unnecessary RISC OS stuff.
2003-12-17 David Shaw <[email protected]>
* mpi.h (gcry_mpi, mpi_get_opaque, mpi_set_opaque): Make nbits and
the length of an opaque MPI unsigned.
* cipher.h (pubkey_verify): Remove old unused code.
2003-12-03 David Shaw <[email protected]>
* cipher.h: Make cipher list match 2440bis-09.
2003-11-20 David Shaw <[email protected]>
* util.h: Add prototype for match_multistr().
2003-10-31 David Shaw <[email protected]>
* cipher.h: Add COMPRESS_ALGO_BZIP2.
2003-10-04 Timo Schulz <[email protected]>
* dynload [WIN32] (dlclose): Do not use CloseHandle but FreeLibrary.
2003-09-29 Werner Koch <[email protected]>
* cipher.h (PUBKEY_USAGE_AUTH): New.
2003-09-28 Timo Schulz <[email protected]>
* util.h [WIN32]: Prototype for asprintf.
* dynload.h [WIN32]: Define RTLD_LAZY.
2003-09-28 Werner Koch <[email protected]>
* util.h: Add the atoi_* and xtoi_* suite of macros from 1.9.
* dynload.h: New. Taken from 1.9.
2003-09-27 Werner Koch <[email protected]>
* memory.h (xmalloc): Define xmalloc macros in terms of m_alloc.
2003-09-04 David Shaw <[email protected]>
* cipher.h: Drop TIGER/192 support.
2003-08-28 David Shaw <[email protected]>
* util.h: s/__MINGW32__/_WIN32/ to help building on native Windows
compilers. Requested by Brian Gladman. From Werner on stable
branch.
2003-07-10 David Shaw <[email protected]>
* types.h: Prefer using uint64_t when creating a 64-bit unsigned
type. This avoids a warning on compilers that support but complain
about unsigned long long.
* util.h (ascii_isspace): New variation on isspace() that is
immune from locale changes.
* util.h: Make sure that only ascii is passed to isfoo
functions. (From Werner on stable branch).
2003-05-24 David Shaw <[email protected]>
* cipher.h, i18n.h, iobuf.h, memory.h, mpi.h, types.h, util.h:
Edit all preprocessor instructions to remove whitespace before the
'#'. This is not required by C89, but there are some compilers
out there that don't like it.
2003-05-14 David Shaw <[email protected]>
* types.h: Add initializer macros for 64-bit unsigned type.
2003-05-02 David Shaw <[email protected]>
* cipher.h: Add constants for compression algorithms.
2003-03-11 David Shaw <[email protected]>
* http.h: Add HTTP_FLAG_TRY_SRV.
2003-02-11 David Shaw <[email protected]>
* types.h: Try and use uint64_t for a 64-bit type.
2003-02-04 David Shaw <[email protected]>
* cipher.h: Add constants for new SHAs.
2002-11-13 David Shaw <[email protected]>
* util.h [__CYGWIN32__]: Don't need the registry prototypes. From
Werner on stable branch.
2002-11-06 David Shaw <[email protected]>
* util.h: Add wipememory2() macro (same as wipememory, but can
specify the byte to wipe with).
2002-10-31 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Prefixed all RISC OS prototypes with
riscos_*
* zlib-riscos.h: New. This is macro magic in order to make the
zlib library calls indeed call the RISC OS ZLib module.
2002-10-31 David Shaw <[email protected]>
* util.h: Add wipememory() macro.
2002-10-29 Stefan Bellon <[email protected]>
* util.h: Added parameter argument to make_basename() needed for
filetype support.
[__riscos__]: Added prototype.
2002-10-28 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Added prototypes for new filetype support.
2002-10-19 David Shaw <[email protected]>
* distfiles, _regex.h: Add _regex.h from glibc 2.3.1.
2002-10-14 David Shaw <[email protected]>
* keyserver.h: Go to KEYSERVER_PROTO_VERSION 1.
2002-10-08 David Shaw <[email protected]>
* keyserver.h: Add new error code KEYSERVER_UNREACHABLE.
2002-10-03 David Shaw <[email protected]>
* util.h: Add new log_warning logger command which can be switched
between log_info and log_error via log_set_strict.
2002-09-24 David Shaw <[email protected]>
* keyserver.h: Add some new error codes for better GPA support.
2002-09-10 Werner Koch <[email protected]>
* mpi.h (mpi_is_protected, mpi_set_protect_flag)
(mpi_clear_protect_flag): Removed.
(mpi_get_nbit_info, mpi_set_nbit_info): Removed.
2002-08-13 David Shaw <[email protected]>
* cipher.h: Add AES aliases for RIJNDAEL algo numbers.
2002-08-07 David Shaw <[email protected]>
* cipher.h: Add md_algo_present().
2002-08-06 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Added riscos_getchar().
2002-06-21 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Further moving away of RISC OS specific
stuff from general code.
2002-06-20 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Added riscos_set_filetype().
2002-06-14 David Shaw <[email protected]>
* util.h: Add pop_strlist() from strgutil.c.
2002-06-07 Stefan Bellon <[email protected]>
* util.h [__riscos__]: RISC OS needs strings.h for strcasecmp()
and strncasecmp().
2002-05-22 Werner Koch <[email protected]>
* util.h: Add strncasecmp. Removed stricmp and memicmp.
2002-05-10 Stefan Bellon <[email protected]>
* mpi.h: New function mpi_debug_alloc_like for M_DEBUG.
* util.h [__riscos__]: Make use of __func__ that later
Norcroft compiler provides.
* memory.h: Fixed wrong definition of m_alloc_secure_clear.
2002-04-23 David Shaw <[email protected]>
* util.h: New function answer_is_yes_no_default() to give a
default answer.
2002-04-22 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Removed riscos_open, riscos_fopen and
riscos_fstat as those special versions aren't needed anymore.
2002-02-19 David Shaw <[email protected]>
* keyserver.h: Add KEYSERVER_NOT_SUPPORTED for unsupported actions
(say, a keyserver that has no way to search, or a readonly
keyserver that has no way to add).
2002-01-02 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Updated prototype list.
* types.h [__riscos__]: Changed comment wording.
2001-12-27 David Shaw <[email protected]>
* KEYSERVER_SCHEME_NOT_FOUND should be 127 to match the POSIX
system() (via /bin/sh) way of signaling this.
* Added G10ERR_KEYSERVER
2001-12-27 Werner Koch <[email protected]>
* util.h [MINGW32]: Fixed name of include file.
2001-12-22 Timo Schulz <[email protected]>
* util.h (is_file_compressed): New.
2001-12-19 Werner Koch <[email protected]>
* util.h [CYGWIN32]: Allow this as an alias for MINGW32. Include
stdarg.h becuase we use the va_list type. By Disastry.
2001-09-28 Werner Koch <[email protected]>
* cipher.h (PUBKEY_USAGE_CERT): New.
2001-09-07 Werner Koch <[email protected]>
* util.h: Add strsep().
2001-08-30 Werner Koch <[email protected]>
* cipher.h (DEK): Added use_mdc.
2001-08-24 Werner Koch <[email protected]>
* cipher.h (md_write): Made buf arg const.
2001-08-20 Werner Koch <[email protected]>
* cipher.h (DEK): Added algo_info_printed;
* util.h [__riscos__]: Added prototypes and made sure that we
never use __attribute__.
* cipher.h, iobuf.h, memory.h, mpi.h [__riscos__]: extern hack.
* i18n.h [__riscos__]: Use another include file
2001-05-30 Werner Koch <[email protected]>
* ttyio.h (tty_printf): Add missing parenthesis for non gcc.
* http.h: Removed trailing comma to make old ccs happy. Both are
by Albert Chin.
2001-05-25 Werner Koch <[email protected]>
* ttyio.h (tty_printf): Add printf attribute.
2001-04-23 Werner Koch <[email protected]>
* http.h: New flag HTTP_FLAG_NO_SHUTDOWN.
2001-04-13 Werner Koch <[email protected]>
* iobuf.h: Removed iobuf_fopen.
2001-03-01 Werner Koch <[email protected]>
* errors.h (G10ERR_UNU_SECKEY,G10ERR_UNU_PUBKEY): New
2000-11-30 Werner Koch <[email protected]>
* iobuf.h (iobuf_translate_file_handle): Add prototype.
2000-11-11 Paul Eggert <[email protected]>
* iobuf.h (iobuf_get_filelength): Now returns off_t, not u32.
(struct iobuf_struct, iobuf_set_limit,
iobuf_tell, iobuf_seek): Use off_t, not ulong, for file offsets.
2000-10-12 Werner Koch <[email protected]>
* mpi.h: Changed the way mpi_limb_t is defined.
Wed Sep 6 17:55:47 CEST 2000 Werner Koch <[email protected]>
* iobuf.c (IOBUF_FILELENGTH_LIMIT): New.
2000-03-14 14:03:43 Werner Koch ([email protected])
* types.h (HAVE_U64_TYPEDEF): Defined depending on configure test.
Thu Jan 13 19:31:58 CET 2000 Werner Koch <[email protected]>
* types.h (HAVE_U64_TYPEDEF): Add a test for _LONGLONG which fixes
this long living SGI bug. Reported by Alec Habig.
Sat Dec 4 12:30:28 CET 1999 Werner Koch <[email protected]>
* iobuf.h (IOBUFCTRL_CANCEL): Nww.
Mon Oct 4 21:23:04 CEST 1999 Werner Koch <[email protected]>
* errors.h (G10ERR_NOT_PROCESSED): New.
Wed Sep 15 16:22:17 CEST 1999 Werner Koch <[email protected]>
* i18n.h: Add support for simple-gettext.
Tue Jun 29 21:44:25 CEST 1999 Werner Koch <[email protected]>
* util.h (stricmp): Use strcasecmp as replacement.
Sat Jun 26 12:15:59 CEST 1999 Werner Koch <[email protected]>
* cipher.h (MD_HANDLE): Assigned a structure name.
Fri Apr 9 12:26:25 CEST 1999 Werner Koch <[email protected]>
* cipher.h (BLOWFISH160): Removed.
Tue Apr 6 19:58:12 CEST 1999 Werner Koch <[email protected]>
* cipher.h (DEK): increased max. key length to 32 bytes
Sat Feb 20 21:40:49 CET 1999 Werner Koch <[email protected]>
* g10lib.h: Removed file and changed all files that includes this.
Tue Feb 16 14:10:02 CET 1999 Werner Koch <[email protected]>
* types.h (STRLIST): Add field flags.
Wed Feb 10 17:15:39 CET 1999 Werner Koch <[email protected]>
* cipher.h (CIPHER_ALGO_TWOFISH): Chnaged ID to 10 and renamed
the old experimenatl algorithm to xx_OLD.
Thu Jan 7 18:00:58 CET 1999 Werner Koch <[email protected]>
* cipher.h (MD_BUFFER_SIZE): Removed.
Mon Dec 14 21:18:49 CET 1998 Werner Koch <[email protected]>
* types.h: fix for SUNPRO_C
Tue Dec 8 13:15:16 CET 1998 Werner Koch <[email protected]>
* mpi.h (MPI): Changed the structure name to gcry_mpi and
changed all users.
Tue Oct 20 11:40:00 1998 Werner Koch ([email protected])
* iobuf.h (iobuf_get_temp_buffer): New.
Tue Oct 13 12:40:48 1998 Werner Koch ([email protected])
* iobuf.h (iobuf_get): Now uses .nofast
(iobuf_get2): Removed.
Mon Sep 14 09:17:22 1998 Werner Koch (wk@(none))
* util.h (HAVE_ATEXIT): New.
(HAVE_RAISE): New.
Mon Jul 6 10:41:55 1998 Werner Koch ([email protected])
* cipher.h (PUBKEY_USAGE_): New.
Mon Jul 6 09:49:51 1998 Werner Koch ([email protected])
* iobuf.h (iobuf_set_error): New.
(iobuf_error): New.
Sat Jun 13 17:31:32 1998 Werner Koch ([email protected])
* g10lib.h: New as interface for the g10lib.
Mon Jun 8 22:14:48 1998 Werner Koch ([email protected])
* cipher.h (CIPHER_ALGO_CAST5): Changed name from .. CAST
Thu May 21 13:25:51 1998 Werner Koch ([email protected])
* cipher.h: removed ROT 5 and changed one id and add dummy
Tue May 19 18:09:05 1998 Werner Koch ([email protected])
* cipher.h (DIGEST_ALGO_TIGER): Chnaged id from 101 to 6.
Mon May 4 16:37:17 1998 Werner Koch ([email protected])
* cipher.h (PUBKEY_ALGO_ELGAMAL_E): New, with value of the
old one.
* (is_ELGAMAL, is_RSA): New macros
Sun Apr 26 14:35:24 1998 Werner Koch ([email protected])
* types.h: New type u64
Mon Mar 9 12:59:55 1998 Werner Koch ([email protected])
* cipher.h: Included dsa.h.
Tue Mar 3 15:11:21 1998 Werner Koch ([email protected])
* cipher.h (random.h): Add new header and move all relevalt
functions to this header.
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
2004, 2005 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
modifications, as long as this notice is preserved.
This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|