-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChangeLog
21943 lines (13513 loc) · 678 KB
/
ChangeLog
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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-02-28 Simon Josefsson <simon@josefsson.org>
* lib/configure.ac: Handle multi-word $GNUTLS_REQUIRES_PRIVATE's.
2011-02-28 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.10.5.
2011-02-27 Simon Josefsson <simon@josefsson.org>
* NEWS: Document pkg-config changes.
2011-02-27 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_pk.c: SHA1 or better check fixed.
2011-02-27 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS: documented fix.
2011-02-27 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_handshake.c: corrected finished packet check.
2011-02-12 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_sig.c: Corrected signature generation and
verification in the Certificate Verify message when in TLS 1.2.
Reported by Todd A. Ouska.
2010-02-28 Andreas Metzler <ametzler@downhill.at.eu.org>
* lib/configure.ac, lib/m4/hooks.m4: pkg-config: If gnutls is built
with zlib support list zlib in Requires.private. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2010-02-28 Andreas Metzler <ametzler@downhill.at.eu.org>
* lib/gnutls.pc.in: pkg-config: drop @LIBGNUTLS_LIBS@ from
Libs.private. This library only contains gnutls itself nowadays,
which is in Libs already. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2010-02-28 Andreas Metzler <ametzler@downhill.at.eu.org>
* lib/gnutls.pc.in, lib/m4/hooks.m4: pkg-config: Move libtasn1 from
Libs.private to Requires.private since libtasn1 provides a .pc file. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2010-02-28 Andreas Metzler <ametzler@downhill.at.eu.org>
* lib/gnutls.pc.in: adapt pkg-config file for switch from
AM_PATH_LIBGCRYPT to AC_LIB_HAVE_LINKFLAGS Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2010-12-06 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, lib/configure.ac, lib/m4/hooks.m4,
libextra/configure.ac: Bump versions.
2010-12-06 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Update for 2.10.4.
2010-12-06 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-12-06 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.10.4.
2010-12-06 Simon Josefsson <simon@josefsson.org>
* NEWS, lib/minitasn1/coding.c, lib/minitasn1/element.c,
lib/minitasn1/libtasn1.h, lib/minitasn1/structure.c: minitasn1:
Updated to Libtasn1 2.9.
2010-12-06 Simon Josefsson <simon@josefsson.org>
* lib/configure.ac, lib/m4/hooks.m4, libextra/configure.ac: Bump
versions.
2010-12-05 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_sig.c, lib/x509/common.c, lib/x509/common.h,
lib/x509/mpi.c, lib/x509/sign.c: Use ASN1_NULL when writing
parameters for RSA signatures. This makes us comply with RFC3279.
Reported by Michael Rommel.
2010-12-05 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, src/serv.c: Corrected buffer overflow in gnutls-serv by
Tomas Mraz. The gnutls-serv uses fixed allocated buffer for the response which
can be pretty long if a client certificate is presented to it and
the http header is large. This causes buffer overflow and heap
corruption which then leads to random segfaults or aborts. It was reported originally here:
https://bugzilla.redhat.com/show_bug.cgi?id=659259 The attached patch changes sprintf calls in peer_print_info() to
snprintf so the buffer is never overflowed.
2010-11-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_cert.c, lib/includes/gnutls/x509.h,
lib/x509/verify.c, src/certtool.c, src/cli.c, tests/chainverify.c:
Reverted default behavior for verification and introduced
GNUTLS_VERIFY_DO_NOT_ALLOW_X509_V1_CA_CRT. Thus by default V1
trusted CAs are allowed, unless the new flag is specified.
2010-11-23 Simon Josefsson <simon@josefsson.org>
* guile/src/Makefile.am: Fix dependencies, fixes parallel builds. Tiny patch from Graham Gower <graham.gower@gmail.com>.
2010-11-21 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS: corrected news
2010-11-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* configure.ac, lib/m4/hooks.m4: bumped version
2010-11-16 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS: added info
2010-11-16 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/x509/privkey_pkcs8.c: Correctly write DSA public key in ASN.1
(add leading zero). Reported by Jeffrey Walton.
2010-11-11 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_x509.c: Removed redundant error check. Reported by
Nicolas Kaiser.
2010-11-03 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_handshake.c: Corrected leak in extension data
calculation. Reported by Mike Blumenkrantz.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* tests/openpgp-certs/testselfsigs: Avoid bashism. Reported by m.drochner@fz-juelich.de in
<http://savannah.gnu.org/support/?107449>.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* lib/crypto-api.c: Don't return from void functions. Reported by Dagobert Michelsen <dam@opencsw.org> in
<http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/4566>.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, lib/configure.ac, lib/m4/hooks.m4,
libextra/configure.ac: Bump versions.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* lib/includes/gnutls/gnutls.h.in: Remove spurious comma.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* lib/includes/gnutls/x509.h: Remove spurious comma.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.10.2.
2010-09-30 Simon Josefsson <simon@josefsson.org>
* tests/pkcs8-decode/Makefile.am, tests/pkcs8-decode/pkcs8: Make
pkcs8-decode test work on Windows.
2010-09-29 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/ext_session_ticket.c: Avoid double free.
2010-09-29 Micah Anderson <micah@riseup.net>
* NEWS, doc/certtool.cfg, lib/includes/gnutls/x509.h,
lib/x509/output.c, src/certtool-cfg.c, src/certtool-cfg.h,
src/certtool.c: Add new extended key usage ipsecIKE According to RFC 4945 § 5.1.3.12 section title
"ExtendedKeyUsage"[0] the following extended key usage has been
added: ... this document defines an ExtendedKeyUsage keyPurposeID that MAY
be used to limit a certificate's use: id-kp-ipsecIKE OBJECT IDENTIFIER ::= { id-kp 17 } where id-kp is defined in RFC 3280 [5]. If a certificate is
intended to be used with both IKE and other applications, and one
of the other applications requires use of an EKU value, then such
certificates MUST contain either the keyPurposeID id-kp-ipsecIKE or anyExtendedKeyUsage [5], as well as the keyPurposeID values associated with the other applications. Similarly, if a CA
issues multiple otherwise-similar certificates for multiple
applications including IKE, and it is intended that the IKE
certificate NOT be used with another application, the IKE
certificate MAY contain an EKU extension listing a keyPurposeID of
id-kp-ipsecIKE to discourage its use with the other application.
Recall, however, that EKU extensions in certificates meant for use
in IKE are NOT RECOMMENDED. Conforming IKE implementations are not required to support EKU.
If a critical EKU extension appears in a certificate and EKU is
not supported by the implementation, then RFC 3280 requires that the certificate be rejected. Implementations that do support EKU
MUST support the following logic for certificate validation: o If no EKU extension, continue. o If EKU present AND contains either id-kp-ipsecIKE or anyExtendedKeyUsage, continue. o Otherwise, reject cert. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2010-09-27 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS: removed invalid e-mail address
2010-09-26 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-09-26 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-09-23 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_handshake.c: No longer use is_fatal() during handshake.
Explicitely treat EAGAIN and INTERRUPTED as non-fatal during
handshake. If the check_fatal flag is set then
GNUTLS_E_WARNING_ALERT_RECEIVED could interrupt a handshake as well.
2010-09-23 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* src/cli.c: fflush stdout and stderr before the call to setbuf.
This fixes issue in solaris where lines dissappeared from output.
Reported and suggested fix by Knut Anders Hatlen.
2010-09-10 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/x509_b64.c: Be liberal in the PEM decoding. That is
spaces and tabs are being skipped.
2010-09-01 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_int.h, lib/gnutls_priority.c,
lib/gnutls_record.c: When the %COMPAT flag is specified, larger
records that would otherwise violate the TLS spec, are accepted.
2010-08-01 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, lib/configure.ac, lib/m4/hooks.m4,
libextra/configure.ac: Bump versions.
2010-08-01 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Update for 2.10.1.
2010-08-01 Simon Josefsson <simon@josefsson.org>
* NEWS: Fix.
2010-07-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_algorithms.c: renamed NULL MAC to MAC-NULL to
prevent clash with NULL cipher.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Typo.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.10.1.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* configure.ac, lib/configure.ac, lib/m4/hooks.m4,
libextra/configure.ac: Bump versions.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* lib/x509/common.h: Add OID, from master branch. To make things
build.
2010-07-25 Simon Josefsson <simon@josefsson.org>
* lib/crypto-api.c, lib/gnutls_algorithms.c, lib/x509/privkey.c,
src/certtool.c, src/cli.c: Indent code.
2010-07-24 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_x509.c, lib/x509/privkey.c, src/certtool.c:
gnutls_x509_privkey_import() will fallback to
gnutls_x509_privkey_import_pkcs8() without a password, if it is
unable to decode the key.
2010-07-24 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_algorithms.c: use RSA-SHA1 as an indicator of RSA
certificates.
2010-07-21 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, lib/gnutls_algorithms.c: Added SIG_RSA_MD5_OID as an
indicator of RSA. Some microsoft products were using it. Reported by
Mads Kiilerich.
2010-07-08 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, src/cli.c: gnutls-cli: Allow verification using V1 CAs.
2010-07-05 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, src/certtool.c: Warn when generating DSA keys of size more
than 1024.
2010-07-05 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* src/certtool-cfg.c: Do not crash if input is redirected from
/dev/null.
2010-07-05 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS, src/certtool-gaa.c, src/certtool.c, src/certtool.gaa,
src/crypt-gaa.c: Changed the default pkcs-cipher to AES-128. Allowed
specifying the 3des-pkcs12 cipher with the --pkcs-cipher option.
2010-07-01 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* NEWS: documented fix
2010-06-30 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/crypto-api.c: Correctly deinitialize crypto API handles.
2010-06-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* src/certtool.c: When generating private key allow usage of
--pkcs-cipher flag.
2010-06-25 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Update.
2010-06-25 Simon Josefsson <simon@josefsson.org>
* cfg.mk: Use non-devel locations.
2010-06-25 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-06-25 Simon Josefsson <simon@josefsson.org>
* cfg.mk: Release to non-alpha locations.
2010-06-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.10.0.
2010-06-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* src/tests.c: Corrected test.
2010-06-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* doc/gnutls.texi, lib/ext_signature.c: Applied patch by Andreas
Metzler
2010-06-18 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, lib/configure.ac, lib/m4/hooks.m4,
libextra/configure.ac: Bump versions.
2010-06-17 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-06-17 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.9.12.
2010-06-17 Simon Josefsson <simon@josefsson.org>
* gl/m4/sockpfaf.m4, lib/gl/m4/sockpfaf.m4: Update gnulib files.
2010-06-17 Simon Josefsson <simon@josefsson.org>
* .gitignore: Add.
2010-06-15 Simon Josefsson <simon@josefsson.org>
* gl/Makefile.am, gl/m4/lib-link.m4, gl/m4/printf.m4,
gl/m4/stdint.m4, gl/m4/time_h.m4, gl/select.c, gl/strerror.c,
gl/tests/init.sh, gl/tests/test-sys_socket.c,
gl/tests/test-verify.c, gl/time.in.h, lib/gl/Makefile.am,
lib/gl/m4/gnulib-comp.m4, lib/gl/m4/iconv.m4,
lib/gl/m4/lib-link.m4, lib/gl/m4/printf.m4, lib/gl/m4/stdint.m4,
lib/gl/m4/time_h.m4, lib/gl/tests/init.sh,
lib/gl/tests/test-sys_socket.c, lib/gl/tests/test-verify.c,
lib/gl/time.in.h, libextra/gl/m4/lib-link.m4, maint.mk: Update
gnulib files.
2010-06-15 Simon Josefsson <simon@josefsson.org>
* lib/m4/hooks.m4: Fix shared library version.
2010-06-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-06-15 Simon Josefsson <simon@josefsson.org>
* src/cli.c: gnutls-cli: Make --starttls work again. Problem introduced in patch to use read() instead of fgets()
committed on 2010-01-27.
2010-06-13 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_handshake.c: more return value fixes.
2010-06-13 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_handshake.c: Corrected return value when safe
renegotiation is disabled.
2010-06-09 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* src/tests.c: corrected tests.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, lib/configure.ac, lib/m4/hooks.m4,
libextra/configure.ac: Bump versions.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.9.11.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Update.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Fix typo.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Editorial doc fixes.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_priority.c: Doc fix.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_priority.c: Doc fix.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* lib/ext_safe_renegotiation.c, lib/gnutls_handshake.c,
lib/gnutls_int.h, lib/gnutls_priority.c, lib/gnutls_state.c: Expand
sr acronym for easy grepping.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_handshake.c, lib/gnutls_int.h, lib/gnutls_priority.c,
lib/x509/common.h, lib/x509/sign.c, lib/x509/verify.c,
tests/mini-x509-rehandshake.c, tests/safe-renegotiation/srn0.c,
tests/safe-renegotiation/srn1.c, tests/safe-renegotiation/srn2.c,
tests/safe-renegotiation/srn3.c, tests/safe-renegotiation/srn5.c,
tests/safe-renegotiation/srn6.c, tests/safe-renegotiation/srn7.c:
Indent code.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* gl/override/top/maint.mk.diff, maint.mk: Drop unnecessary gnulib
patch.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README: Improve safe renegotiation
README.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/README, tests/safe-renegotiation/srn7.c:
Add new self test srn7.c.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/README, tests/safe-renegotiation/srn6.c:
Add new self test srn6.c
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README, tests/safe-renegotiation/srn5.c:
Rewrite self test srn5.c.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README, tests/safe-renegotiation/srn4.c:
Rewrite srn4.c self test.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README, tests/safe-renegotiation/srn3.c:
Review srn3.c self test.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README, tests/safe-renegotiation/srn2.c:
Rewrite srn2.c self-test.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/srn1.c: Also check initial state.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/srn0.c: Also check initial state.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README, tests/safe-renegotiation/srn1.c:
Rewrite srn1.c self test.
2010-06-07 Simon Josefsson <simon@josefsson.org>
* lib/po/nl.po.in: Sync with TP.
2010-06-01 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* doc/announce.txt, doc/gnutls.texi, doc/manpages/gnutls-cli.1,
doc/manpages/gnutls-serv.1, lib/ext_safe_renegotiation.c,
lib/gnutls_handshake.c, lib/gnutls_int.h, lib/gnutls_priority.c,
lib/gnutls_state.c, tests/safe-renegotiation/srn1.c,
tests/safe-renegotiation/srn5.c, tests/safe-renegotiation/testsrn:
Splitted safe renegotiation capabilities to %SAFE_RENEGOTIATION: will enable safe renegotiation. This is the
most secure and recommended option for clients. However this will
prevent from connecting to legacy servers. %PARTIAL_RENEGOTIATION: Prevents renegotiation with clients and
servers not supporting the safe renegotiation extension. (this is
the default) %UNSAFE_RENEGOTIATION: Permits (re-)handshakes even unsafe ones.
2010-05-31 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Minor fix.
2010-05-31 Simon Josefsson <simon@josefsson.org>
* GNUmakefile, maint.mk: Update gnulib files.
2010-05-29 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* doc/gnutls.texi: Documented the defaults.
2010-05-28 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* doc/gnutls.texi: Added INITIAL_SAFE_RENEGOTIATION and other small
updates.
2010-05-28 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Update.
2010-05-28 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/README: Add.
2010-05-28 Simon Josefsson <simon@josefsson.org>
* .x-sc_prohibit_strings_without_use, build-aux/c++defs.h,
build-aux/gendocs.sh, build-aux/gnupload, build-aux/vc-list-files,
configure.ac, doc/gendocs_template, gl/Makefile.am, gl/error.c,
gl/m4/asm-underscore.m4, gl/m4/gnulib-cache.m4,
gl/m4/gnulib-common.m4, gl/m4/gnulib-comp.m4, gl/m4/netdb_h.m4,
gl/m4/stdio_h.m4, gl/m4/unistd_h.m4, gl/m4/valgrind-tests.m4,
gl/netdb.in.h, gl/stdio-write.c, gl/stdio.in.h,
gl/tests/Makefile.am, gl/tests/init.sh, gl/tests/test-lseek.sh,
gl/tests/test-vc-list-files-cvs.sh,
gl/tests/test-vc-list-files-git.sh, gl/tests/test-verify.c,
gl/tests/test-verify.sh, gl/tests/verify.h, gl/unistd.in.h,
gl/vasnprintf.c, gl/wchar.in.h, gtk-doc.make,
lib/build-aux/c++defs.h, lib/gl/Makefile.am,
lib/gl/m4/asm-underscore.m4, lib/gl/m4/fcntl-o.m4,
lib/gl/m4/gettext.m4, lib/gl/m4/gnulib-common.m4,
lib/gl/m4/gnulib-comp.m4, lib/gl/m4/iconv.m4, lib/gl/m4/intl.m4,
lib/gl/m4/netdb_h.m4, lib/gl/m4/po.m4, lib/gl/m4/stdio_h.m4,
lib/gl/m4/unistd_h.m4, lib/gl/netdb.in.h, lib/gl/stdio-write.c,
lib/gl/stdio.in.h, lib/gl/tests/Makefile.am, lib/gl/tests/init.sh,
lib/gl/tests/test-vasprintf.c, lib/gl/tests/test-verify.c,
lib/gl/tests/test-verify.sh, lib/gl/tests/verify.h,
lib/gl/unistd.in.h, lib/gl/vasnprintf.c, lib/gl/wchar.in.h,
libextra/gl/m4/gnulib-common.m4, m4/valgrind.m4, maint.mk: Update
gnulib files, use valgrind-tests module, fix syntax-check problems.
2010-05-28 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Doc fix.
2010-05-25 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/x509/common.h, lib/x509/privkey.c, lib/x509/sign.c,
lib/x509/verify.c: Use correct hashing algorithms for DSA with q
over 160 bits.
2010-05-24 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_algorithms.c: Better checks in loops.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* lib/x509/crl.c: Doc fix.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* doc/reference/Makefile.am, gtk-doc.make, m4/gtk-doc.m4: Support
GTK-DOC PDF file.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* cfg.mk: Also build PDF manual.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Fix node/section usage.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/srn5.c: Fix self test.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_handshake.c: Readd lost fix from Nikos.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* lib/ext_safe_renegotiation.c: Readd lost fix from Nikos.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_errors.c, libextra/includes/gnutls/openssl.h,
libextra/openssl_compat.c: Doc fixes.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* lib/x509/x509.c: Doc fix.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, README, cfg.mk, configure.ac, doc/Makefile.am,
doc/credentials/Makefile.am, doc/cyclo/Makefile.am, doc/errcodes.c,
doc/examples/Makefile.am, doc/examples/ex-client-srp.c,
doc/examples/ex-serv-anon.c, doc/examples/ex-serv-pgp.c,
doc/examples/ex-serv-psk.c, doc/examples/ex-serv-srp.c,
doc/examples/ex-serv1.c, doc/gnutls.texi, doc/manpages/Makefile.am,
doc/printlist.c, guile/Makefile.am, guile/modules/Makefile.am,
guile/modules/gnutls.scm, guile/modules/gnutls/build/enums.scm,
guile/modules/gnutls/build/priorities.scm,
guile/modules/gnutls/build/smobs.scm,
guile/modules/gnutls/build/utils.scm,
guile/modules/gnutls/extra.scm, guile/src/Makefile.am,
guile/src/core.c, guile/src/errors.c, guile/src/errors.h,
guile/src/extra.c, guile/src/make-enum-header.scm,
guile/src/make-enum-map.scm, guile/src/make-session-priorities.scm,
guile/src/make-smob-header.scm, guile/src/make-smob-types.scm,
guile/src/utils.c, guile/src/utils.h, guile/tests/Makefile.am,
guile/tests/anonymous-auth.scm, guile/tests/errors.scm,
guile/tests/openpgp-auth.scm, guile/tests/openpgp-keyring.scm,
guile/tests/openpgp-keys.scm, guile/tests/pkcs-import-export.scm,
guile/tests/session-record-port.scm, guile/tests/srp-base64.scm,
guile/tests/x509-auth.scm, guile/tests/x509-certificates.scm,
lib/Makefile.am, lib/auth_anon.c, lib/auth_anon.h, lib/auth_cert.c,
lib/auth_cert.h, lib/auth_dh_common.c, lib/auth_dh_common.h,
lib/auth_dhe.c, lib/auth_dhe_psk.c, lib/auth_psk.c, lib/auth_psk.h,
lib/auth_psk_passwd.c, lib/auth_psk_passwd.h, lib/auth_rsa.c,
lib/auth_rsa_export.c, lib/auth_srp.c, lib/auth_srp.h,
lib/auth_srp_passwd.c, lib/auth_srp_passwd.h, lib/auth_srp_rsa.c,
lib/auth_srp_sb64.c, lib/cipher-libgcrypt.c, lib/configure.ac,
lib/crypto-api.c, lib/crypto.c, lib/crypto.h, lib/cryptodev.c,
lib/debug.c, lib/debug.h, lib/ext_cert_type.c, lib/ext_cert_type.h,
lib/ext_max_record.c, lib/ext_max_record.h, lib/ext_oprfi.c,
lib/ext_oprfi.h, lib/ext_safe_renegotiation.c,
lib/ext_safe_renegotiation.h, lib/ext_server_name.c,
lib/ext_server_name.h, lib/ext_session_ticket.c,
lib/ext_session_ticket.h, lib/ext_signature.c, lib/ext_signature.h,
lib/ext_srp.c, lib/ext_srp.h, lib/gnutls_alert.c,
lib/gnutls_algorithms.c, lib/gnutls_algorithms.h,
lib/gnutls_anon_cred.c, lib/gnutls_auth.c, lib/gnutls_auth.h,
lib/gnutls_buffers.c, lib/gnutls_buffers.h, lib/gnutls_cert.c,
lib/gnutls_cert.h, lib/gnutls_cipher.c, lib/gnutls_cipher.h,
lib/gnutls_cipher_int.c, lib/gnutls_cipher_int.h,
lib/gnutls_compress.c, lib/gnutls_compress.h,
lib/gnutls_constate.c, lib/gnutls_constate.h, lib/gnutls_datum.c,
lib/gnutls_datum.h, lib/gnutls_db.c, lib/gnutls_db.h,
lib/gnutls_dh.c, lib/gnutls_dh.h, lib/gnutls_dh_primes.c,
lib/gnutls_errors.c, lib/gnutls_errors.h, lib/gnutls_extensions.c,
lib/gnutls_extensions.h, lib/gnutls_global.c, lib/gnutls_global.h,
lib/gnutls_handshake.c, lib/gnutls_handshake.h,
lib/gnutls_hash_int.c, lib/gnutls_hash_int.h, lib/gnutls_helper.c,
lib/gnutls_int.h, lib/gnutls_kx.c, lib/gnutls_kx.h,
lib/gnutls_mem.c, lib/gnutls_mem.h, lib/gnutls_mpi.c,
lib/gnutls_mpi.h, lib/gnutls_num.c, lib/gnutls_num.h,
lib/gnutls_pk.c, lib/gnutls_pk.h, lib/gnutls_priority.c,
lib/gnutls_psk.c, lib/gnutls_psk_netconf.c, lib/gnutls_record.c,
lib/gnutls_record.h, lib/gnutls_rsa_export.c,
lib/gnutls_rsa_export.h, lib/gnutls_session.c,
lib/gnutls_session_pack.c, lib/gnutls_session_pack.h,
lib/gnutls_sig.c, lib/gnutls_sig.h, lib/gnutls_srp.c,
lib/gnutls_srp.h, lib/gnutls_state.c, lib/gnutls_state.h,
lib/gnutls_str.c, lib/gnutls_str.h, lib/gnutls_supplemental.c,
lib/gnutls_supplemental.h, lib/gnutls_ui.c, lib/gnutls_v2_compat.c,
lib/gnutls_v2_compat.h, lib/gnutls_x509.c, lib/gnutls_x509.h,
lib/includes/Makefile.am, lib/includes/gnutls/crypto.h,
lib/includes/gnutls/gnutls.h.in, lib/includes/gnutls/openpgp.h,
lib/includes/gnutls/pkcs12.h, lib/includes/gnutls/x509.h,
lib/libgnutls.map, lib/libgnutlsxx.map, lib/m4/hooks.m4,
lib/mac-libgcrypt.c, lib/minitasn1/Makefile.am,
lib/mpi-libgcrypt.c, lib/opencdk/Makefile.am,
lib/openpgp/Makefile.am, lib/openpgp/compat.c,
lib/openpgp/extras.c, lib/openpgp/gnutls_openpgp.c,
lib/openpgp/output.c, lib/openpgp/pgp.c, lib/openpgp/pgpverify.c,
lib/openpgp/privkey.c, lib/pk-libgcrypt.c, lib/random.c,
lib/random.h, lib/rnd-libgcrypt.c, lib/x509/Makefile.am,
lib/x509/common.c, lib/x509/common.h, lib/x509/crl.c,
lib/x509/crl_write.c, lib/x509/crq.c, lib/x509/dn.c,
lib/x509/extensions.c, lib/x509/mpi.c, lib/x509/output.c,
lib/x509/pkcs12.c, lib/x509/pkcs12_bag.c, lib/x509/pkcs12_encr.c,
lib/x509/pkcs7.c, lib/x509/privkey.c, lib/x509/privkey_pkcs8.c,
lib/x509/rfc2818_hostname.c, lib/x509/sign.c, lib/x509/verify.c,
lib/x509/x509.c, lib/x509/x509_int.h, lib/x509/x509_write.c,
lib/x509_b64.c, lib/x509_b64.h, libextra/Makefile.am,
libextra/configure.ac, libextra/ext_inner_application.c,
libextra/ext_inner_application.h, libextra/fipsmd5.c,
libextra/gl/Makefile.am, libextra/gnutls_extra.c,
libextra/gnutls_ia.c, libextra/gnutls_openssl.c,
libextra/includes/Makefile.am, libextra/includes/gnutls/extra.h,
libextra/includes/gnutls/openssl.h, libextra/libgnutls-extra.map,
libextra/m4/hooks.m4, libextra/openssl_compat.c,
libextra/openssl_compat.h, src/Makefile.am, src/benchmark.c,
src/certtool-cfg.c, src/certtool.c, src/cli.c, src/common.c,
src/crypt.c, src/list.h, src/prime.c, src/psk.c, src/serv.c,
src/tests.c, src/tls_test.c, tests/Makefile.am, tests/anonself.c,
tests/certder.c, tests/certificate_set_x509_crl.c,
tests/chainverify.c, tests/crq_apis.c, tests/crq_key_id.c,
tests/crypto_rng.c, tests/cve-2008-4989.c, tests/cve-2009-1415.c,
tests/cve-2009-1416.c, tests/dhepskself.c, tests/dn.c, tests/dn2.c,
tests/finished.c, tests/gc.c, tests/hostname-check.c,
tests/init_roundtrip.c, tests/key-id/Makefile.am,
tests/key-id/key-id, tests/mini-eagain.c,
tests/mini-x509-rehandshake.c, tests/mini-x509.c, tests/mini.c,
tests/moredn.c, tests/mpi.c, tests/netconf-psk.c,
tests/nist-pkits/pkits, tests/nist-pkits/pkits_crl,
tests/nist-pkits/pkits_crt, tests/nist-pkits/pkits_pkcs12,
tests/nist-pkits/pkits_smime, tests/nul-in-x509-names.c,
tests/openpgp-certs/Makefile.am, tests/openpgp-certs/testcerts,
tests/openpgp-certs/testselfsigs, tests/openpgp-keyring.c,
tests/openpgpself.c, tests/openssl.c, tests/oprfi.c,
tests/parse_ca.c, tests/pathlen/Makefile.am, tests/pathlen/pathlen,
tests/pgps2kgnu.c, tests/pkcs1-padding/Makefile.am,
tests/pkcs1-padding/pkcs1-pad, tests/pkcs12-decode/Makefile.am,
tests/pkcs12-decode/pkcs12, tests/pkcs12_encode.c,
tests/pkcs12_s2k.c, tests/pkcs12_s2k_pem.c,
tests/pkcs8-decode/Makefile.am, tests/pkcs8-decode/pkcs8,
tests/pskself.c, tests/resume.c, tests/rfc2253-escape-test,
tests/rsa-md5-collision/Makefile.am,
tests/rsa-md5-collision/rsa-md5-collision,
tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/srn0.c, tests/safe-renegotiation/srn1.c,
tests/safe-renegotiation/srn2.c, tests/safe-renegotiation/srn3.c,
tests/safe-renegotiation/srn4.c, tests/safe-renegotiation/srn5.c,
tests/safe-renegotiation/testsrn, tests/set_pkcs12_cred.c,
tests/setcredcrash.c, tests/sha2/Makefile.am, tests/sha2/sha2,
tests/simple.c, tests/tlsia.c, tests/userid/Makefile.am,
tests/userid/userid, tests/utils.c, tests/utils.h,
tests/x509_altname.c, tests/x509dn.c, tests/x509paths/chain,
tests/x509self.c, tests/x509sign-verify.c, tests/x509signself.c:
Change GNUTLS into GnuTLS.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* AUTHORS, ChangeLog.1, NEWS, README, README-alpha, THANKS,
doc/gnutls.texi, doc/manpages/gnutls-cli-debug.1,
doc/manpages/gnutls-cli.1, doc/manpages/gnutls-serv.1,
doc/manpages/srptool.1, doc/reference/gnutls-docs.sgml,
lib/ext_safe_renegotiation.c, lib/gnutls_handshake.c,
src/cli-gaa.c, src/cli.gaa, src/serv-gaa.c, src/serv.gaa,
src/tls_test-gaa.c, src/tls_test.gaa: Change GNU TLS into GnuTLS.
2010-05-22 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/ext_safe_renegotiation.c, lib/gnutls_handshake.c: Ignore
parsing of ciphersuite or extensions when safe renegotiation is
disabled.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/srn5.c: Add test of self renegotiation
APIs.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/README, tests/safe-renegotiation/srn4.c:
Add more rengotiation self tests.
2010-05-22 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/README, tests/safe-renegotiation/srn0.c:
Add more safe renegotiation self test.
2010-05-21 Simon Josefsson <simon@josefsson.org>
* NEWS, doc/announce.txt, doc/gnutls.texi,
doc/manpages/Makefile.am, lib/ext_safe_renegotiation.c,
lib/includes/gnutls/gnutls.h.in, lib/libgnutls.map,
tests/safe-renegotiation/srn2.c: Remove
gnutls_safe_negotiation_set_initial and
gnutls_safe_renegotiation_set.
2010-05-18 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_priority.c: Documented behavioral change.
2010-05-18 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_int.h, lib/gnutls_priority.c: Because we want to
differentiate the behavior of server and client with regards to safe
renegotiation. If a server didn't have either SAFE_RENEGOTIATION or
UNSAFE_RENEGOTIATION set the safe renegotiation will be the default.
This (as well as the safe_renegotiation_set flag) has to be removed
once safe renegotiation is default in both server and client side.
2010-05-18 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/gnutls_state.c: Emulate old gnutls behavior regarding safe
renegotiation if the priority_* functions are not called.
2010-05-11 Nikos Mavrogiannopoulos <nmav@gnutls.org>
* lib/includes/gnutls/x509.h: Corrected typo. Reported by Clint
Adams.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/srn1.c, tests/safe-renegotiation/srn3.c:
tests: Add srn3 to test inverse of what srn1 is testing.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/srn2.c: tests: Add another safe
renegotiation self tests.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/srn1.c: Also test
gnutls_safe_renegotiation_status API.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/safe-renegotiation/Makefile.am,
tests/safe-renegotiation/srn1.c: tests: Add first self-test of safe
renegotiation extension.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/Makefile.am, tests/mini-x509-rehandshake.c: tests: Add small
X.509 rehandshake test.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/mini-x509.c: Protect against infloops.
2010-05-03 Simon Josefsson <simon@josefsson.org>
* tests/Makefile.am, tests/mini-x509.c: tests: Add mini-x509
self-test.
2010-04-30 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Improve text, based on suggestions from Tomas
Hoger <thoger@redhat.com>.
2010-04-29 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_handshake.c: Fix typo.
2010-04-29 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_handshake.c: Improve renegotiation debug messages.
2010-04-29 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Add.
2010-04-29 Simon Josefsson <simon@josefsson.org>
* .gitignore: Add.
2010-04-29 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Add section on safe renegotiation.
2010-04-29 Simon Josefsson <simon@josefsson.org>
* lib/gnutls_record.c: Remove debug code.
2010-04-25 Simon Josefsson <simon@josefsson.org>
* doc/gnutls.texi: Mention shared library map file and GTK-DOC
guidelines.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Update URL.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* AUTHORS: Update my OpenPGP key.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* doc/announce.txt: Update my key.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* doc/announcement-template.txt: Remove.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* doc/ANNOUNCE, doc/announce.txt: Prepare 2.10.0 release notes.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* NEWS: Add 2.8.x NEWS entries.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* libextra/configure.ac: Also bump libgnutls-extra version.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, lib/configure.ac, lib/m4/hooks.m4: Bump
versions.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* build-aux/gendocs.sh: Chmod +x.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* ChangeLog: Generated.
2010-04-22 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.9.10.
2010-04-21 Simon Josefsson <simon@josefsson.org>
* NEWS, lib/minitasn1/Makefile.am, lib/minitasn1/coding.c,
lib/minitasn1/decoding.c, lib/minitasn1/element.h,
lib/minitasn1/gstr.h, lib/minitasn1/libtasn1.h,
lib/minitasn1/parser_aux.c, lib/minitasn1/parser_aux.h,
lib/minitasn1/structure.h, lib/minitasn1/version.c: Upgrade to
libtasn1 version 2.6.
2010-04-21 Simon Josefsson <simon@josefsson.org>
* gl/Makefile.am, gl/m4/gnulib-comp.m4, gl/m4/ioctl.m4,
gl/m4/netdb_h.m4, gl/stdbool.in.h, gl/tests/test-lseek.sh,
gl/tests/test-select-in.sh, gl/tests/test-stdbool.c,
gl/tests/test-stdint.c, lib/gl/Makefile.am, lib/gl/m4/netdb_h.m4,
lib/gl/m4/visibility.m4, lib/gl/stdbool.in.h,
lib/gl/tests/test-stdbool.c, lib/gl/tests/test-stdint.c,
lib/gl/tests/test-vasprintf.c, maint.mk: Update gnulib files.
2010-04-21 Simon Josefsson <simon@josefsson.org>
* configure.ac: Structure fork check together.