-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvotes.txt
1558 lines (1390 loc) · 39.4 KB
/
votes.txt
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
# This file is obsolete as of 2021-11-09 as we use the new voting process
# according to
# https://github.com/openssl/technical-policies/blob/master/policies/voting-procedure.md
#
###### ### #######
# # #### # # ### ##### # ##### # #####
# # # # ## # # # # # # # #
# # # # # # # # # ##### # # # #
# # # # # # # # # # # # #
# # # # # ## # # # # # #
###### #### # # # ####### ##### # #
# A record of formal votes in reverse chronological order.
#
# To vote, add one of the following entries next to your name:
#
# [+1] I vote in favour of the proposal
# [ 0] I abstain from the vote
# [-1] I vote against the proposal
#
# If you are abstaining, you can indicate a tendency as follows:
#
# [+0] I abstain but with a slight lean towards a vote in favour
# [ 0] I abstain with no stated preference
# [-0] I abstain but with a slight lean towards a vote against
#
# A template for voting (alphabetical by surname) follows.
----------------
topic: .
Proposed by .
Public: yes
opened: 2021-mm-dd
closed: 2021-mm-dd
accepted: yes/no (for: X, against: Y, abstained: Z, not voted: T)
Dmitry [ ]
Matt [ ]
Pauli [ ]
Tim [ ]
Hugo [ ]
Richard [ ]
Shane [ ]
Tomas [ ]
Kurt [ ]
Matthias [ ]
Nicola [ ]
----------------
topic: Fix CVE-2023-0286 by correcting the public header file for all
supported versions including premium 1.0.2.
comment: https://github.openssl.org/otc/security/issues/66
Proposed by Pauli.
Public: no
opened: 2021-01-17
closed: 2021-01-17
accepted: yes (for: 7, against: 0, abstained: 0, not voted: 3)
Dmitry [+1]
Matt [+1]
Pauli [+1]
Tim [ ]
Hugo [+1]
Richard [ 0]
Shane [ ]
Tomas [+1]
Kurt [+1] # 2023-1-21
Matthias [+1]
Nicola [+1]
----------------
topic: Approve the proposed test labelling policy (technical-policies#57)
Proposed by Hugo Landau
Issue link: https://github.com/openssl/technical-policies/pull/57
Public: yes
opened: 2022-11-07
closed: 2022-11-10
accepted: yes (for: 8, against: 0, abstained: 1, not voted: 2)
Dmitry [+1]
Matt [+1]
Pauli [+1]
Tim [ 0]
Hugo [+1]
Richard [ ]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [+1]
Nicola [+0] # 2022-11-10
----------------
topic: Accept PR #16705 into 3.0 subject to the normal review process
Proposed by Matt Caswell
Public: yes
opened: 2021-12-07
closed: 2021-12-07
accepted: yes (for: 4, against: 1, abstained: 3, not voted: 2)
Dmitry [+0]
Matt [+1]
Pauli [-0]
Tim [-1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [-1] # 2021-12-07
Matthias [+0]
Nicola [ ]
----------------
topic: Accept openssl/technical-policies PR#2 - the policy change
process proposal as of commit 5740178. This will become an official OTC
policy.
comment: This changes the voting procedure for public OTC votes to use the
pull requests and issues on the openssl/technical-policies repository
instead of the openssl-project mailing list.
Proposed by Tomáš Mráz
Public: yes
opened: 2021-11-09
closed: 2021-11-09
accepted: yes (for: 8, against: 0, abstained: 0, not voted: 2)
Dmitry [+1]
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [ ]
Tomas [+1]
Kurt [+1] # 2021-11-09
Matthias [+1]
Nicola [+1]
----------------
topic: Accept openssl/technical-policies PR#1 - the policy change
process proposal as of commit 3bccdf6. This will become an official OTC
policy.
comment: This will implement the formal policy change process so we can
introduce and amend further policies as set by OTC via a public
process.
Proposed by Tomáš Mráz
Public: yes
opened: 2021-11-01
closed: 2021-11-03
accepted: yes (for: 9, against: 0, abstained: 0, not voted: 1)
Dmitry [+1]
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1] # 2021-11-09
Matthias [+1]
Nicola [+1]
----------------
topic: Accept PR#16725 as a bug fix for backport into 3.0 subject to the normal
review process
Proposed by Matt Caswell
Public: yes
opened: 2021-10-19
closed: 2021-10-20
accepted: yes (for: 4, against: 2, abstained: 4, not voted: 0)
Dmitry [+0]
Matt [+1]
Pauli [ 0]
Tim [ 0] # Vote changed 2021-10-20
Richard [+0]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [-1]
Nicola [-1]
----------------
topic: Increase the default security level from 1 to 2 in master
Proposed by Matt Caswell
Public: yes
opened: 2021-09-21
closed: 2021-09-21
accepted: yes (for: 7, against: 1, abstained: 1, not voted: 1)
Dmitry [+1]
Matt [+1]
Pauli [+1]
Tim [+0]
Richard [+1]
Shane [-1]
Tomas [+1]
Kurt [+1] # 2021-09-22
Matthias [+1]
Nicola [+1]
----------------
topic: Accept PR#16594 into master subject to the normal review process
comment: this doesn't meet the requirement of being a standard but is in use
and we have the implementation but it isn't exposed.
Proposed by Pauli.
Public: yes
opened: 2021-09-21
closed: 2021-09-21
accepted: yes (for: 5, against: 0, abstained: 3, not voted: 2)
Dmitry [+1]
Matt [ 0]
Pauli [+1]
Tim [+0]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1] # 2021-09-22
Matthias [+1] # 2021-09-22
Nicola [+0]
----------------
topic: Allow the restart of merging of non-breaking small features to the master
branch
Proposed by Matt Caswell
Public: yes
opened: 2021-09-14
closed: 2021-09-14
accepted: yes (for: 5, against: 1, abstained: 1, not voted: 2)
Dmitry [+1]
Matt [+1]
Pauli [+1] # 2021-09-14
Tim [-1]
Richard [+1]
Shane [ 0]
Tomas [+1]
Kurt [+1] # 2021-09-15
Matthias [+1]
Nicola [+1]
----------------
topic: Create `openssl-3.0' git branch today.
comment: This cascades to other names/version information on GitHub.
For example, change the release version information in the
master branch to 3.1.0-dev
Proposed by Pauli.
Public: yes
opened: 2021-08-31
closed: 2021-08-31
accepted: yes (for: 7, against: 0, abstained: 0, not voted: 3)
Dmitry [+1]
Matt [+1] # 2021-09-01
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [ ]
Matthias [+1]
Nicola [ ]
----------------
topic: Release 3.0.0 final on Tuesday the 7th of September 2021 if run-checker
and CI builds have been clean for two days.
Proposed by Pauli.
Public: yes
opened: 2021-08-31
closed: 2021-08-31
accepted: yes (for: 8, against: 0, abstained: 0, not voted: 2)
Dmitry [+1]
Matt [+1] # 2021-09-01
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [ ]
Matthias [+1]
Nicola [+1]
----------------
topic: Accept PR#16286 into 3.0 subject to the normal review process
Proposed by Shane Lontis
Public: yes
opened: 2021-08-17
closed: 2021-08-18
accepted: yes (for: 5, against: 1, abstained: 1, not voted: 3)
Dmitry [+1]
Matt [-1]
Pauli [+1]
Tim [ 0]
Richard [+1]
Shane [+1]
Tomas [-1] # 2021-08-23
Kurt [-1] # 2021-08-29
Matthias [ 0] # 2021-08-23
Nicola [+1]
----------------
topic: RSA public exponent validation in 3.0 for the default provider should be
consistent with 1.1.1
Comment: See issue #16255 for background
Proposed by Matt Caswell
Public: yes
opened: 2021-08-10
closed: 2021-08-11
accepted: yes (for: 4, against: 2, abstained: 3, not voted: 1)
Dmitry [ 0]
Matt [+1]
Pauli [ 0]
Tim [+1]
Richard [ 0] # 2021-08-15
Shane [+1]
Tomas [+1]
Kurt [-1]
Matthias [-1]
Nicola [-0]
----------------
topic: Revert the commits merged from PR #16027 in 1.1.1
Comment: Refer to issue #16266 for background
Proposed by Tomas Mraz
Public: yes
opened: 2021-08-10
closed: 2021-08-13
accepted: yes (for: 5, against: 3, abstained: 1, not voted: 1)
Dmitry [+1]
Matt [+1]
Pauli [+0]
Tim [-1]
Richard [-1] # 2021-08-15
Shane [-1]
Tomas [+1]
Kurt [+1]
Matthias [+1]
Nicola [-1]
----------------
topic: Accept PR 16171 in 3.0 subject to our normal review process.
Proposed by Pauli.
Public: yes
opened: 2021-08-03
closed: 2021-08-04
accepted: yes (for: 6, against: 1, abstained:1, not voted: 2)
ONE WEEK VOTE
Dmitry [+1]
Matt [+1] # 2021-08-10
Pauli [+1]
Tim [+1]
Richard [ ]
Shane [+1]
Tomas [+1]
Kurt [-1]
Matthias [ 0]
Nicola [+1]
----------------
topic: Accept PR 16203 in 3.0 subject to our normal review process.
Proposed by Pauli.
Public: yes
opened: 2021-08-03
closed: 2021-08-05
accepted: yes (for: 4, against: 1, abstained: 4, not voted: 1)
ONE WEEK VOTE
Dmitry [+1]
Matt [+1]
Pauli [+1]
Tim [ 0]
Richard [ ]
Shane [ 0]
Tomas [+1]
Kurt [-1]
Matthias [ 0]
Nicola [+0]
----------------
topic: OTC approve the release of 3.0 beta2 on Thursday 29th July
Proposed by Matt Caswell
Public: yes
opened: 2021-07-27
closed: 2021-07-27
accepted: yes (for: 7, against: 0, abstained: 0, not voted: 2)
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [ ]
Kurt [+1] # 2021-07-27
Matthias [+1]
Nicola [+1]
----------------
topic: Accept PR 16128 in 3.0 subject to our normal review process
Proposed by Matt Caswell
Public: yes
opened: 2021-07-22
closed: 2021-07-27
accepted: yes (for: 8, against: 0, abstained: 0, not voted:1)
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1] # 2021-07-27
Matthias [+1]
Nicola [+1]
----------------
topic: We should accept PR #16118 into 3.0 when completed and subject to the
normal review process
Proposed by Matt Caswell
Public: yes
opened: 2021-07-21
closed: 2021-07-21
accepted: yes (for: 5, against: 0, abstained: 3, not voted: 1)
Matt [+1]
Pauli [+1]
Tim [ 0]
Richard [ 0]
Shane [ 0]
Tomas [+1]
Kurt [ 0] # 2021-07-27
Matthias [+1]
Nicola [+1]
----------------
topic: We should fix the issue described in #16088 for 3.0
Proposed by Matt Caswell
Public: yes
opened: 2021-07-21
closed: 2021-07-21
accepted: yes (for: 6, against: 0, abstained: 2, not voted: 1)
Matt [+1]
Pauli [+1]
Tim [ 0]
Richard [ 0]
Shane [+1]
Tomas [+1]
Kurt [-1] # 2021-07-27
Matthias [+1]
Nicola [+1]
----------------
topic: Accept PR 16050 in 3.0 subject to our normal review process
Proposed by Tim Hudson
Public: yes
opened: 2021-07-20
closed: 2021-07-27
accepted: no (for: 1, against: 3, abstained: 4, not voted: 1)
Matt [-1]
Pauli [+0]
Tim [-1]
Richard [+1]
Shane [-1]
Tomas [ 0]
Kurt [-1] # 2021-07-27
Matthias [ 0]
Nicola [ 0]
----------------
topic: Allow the addition of EVP_PKEY_get0_provider() and
EVP_PKEY_CTX_get0_provider() calls in 3.0
Proposed by Paul Dale
Public: yes
opened: 2021-07-13
closed: 2021-07-13
accepted: yes (for: 5, against: 1, abstained: 2, not voted: 1)
Matt [ 0]
Pauli [+1]
Tim [-1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [-1] # 2021-07-13
Matthias [ 0]
Nicola [+1]
----------------
topic: Remove ERR_GET_FUNC in 3.0
Proposed by Nicola Tuveri
Public: yes
opened: 2021-07-06
closed: 2021-07-06
accepted: yes (for: 6, against: 1, abstained: 0, not voted: 2)
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [-1]
Shane [+1]
Tomas [+1] # 2021-07-08
Kurt [ 0] # 2021-07-08
Matthias [+1]
Nicola [+1]
----------------
topic: Accept #15955 in 3.0
Proposed by Pauli.
Public: yes
opened: 2021-06-30
closed: 2021-07-08
accepted: vote withdraw becuase the vote above invalidates it
Matt [-1] # 2021-07-12
Pauli [+1]
Tim [ ]
Richard [ ]
Shane [+1]
Tomas [+1]
Kurt [-1]
Matthias [ ]
Nicola [ ]
----------------
topic: Accept PR #15763 for 1.1.1 subject to the normal review process
Proposed by Matt Caswell
Public: yes
opened: 2021-06-29
closed: 2021-06-29
accepted: yes (for: 7, against: 0, abstained: 0, not voted: 2)
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1] # 2021-06-30
Tomas [+1]
Kurt [+1] # 2021-06-30
Matthias [+1]
Nicola [+1]
----------------
topic: Accept the API additions from pull request #15790 subject to the normal
review process
Proposed by Tomas Mraz
Public: yes
opened: 2021-06-29
closed: 2021-06-29
accepted: yes (for: 6, against: 1, abstained: 0, not voted: 2)
Matt [+1]
Pauli [+1]
Tim [-1]
Richard [+1]
Shane [+1] # 2021-06-30
Tomas [+1]
Kurt [ 0] # 2021-06-30
Matthias [+1]
Nicola [+1]
----------------
topic: We will allow enabling of __owur specifiers for functions for 3.0 as a
safe API-change exception.
comment: See issue #15902
Proposed by Paul Dale
Public: yes
opened: 2021-06-29
closed: 2021-06-30
accepted: no (for: 1, against: 3, abstained: 4, not voted: 1)
Matt [-1]
Pauli [-0]
Tim [-1]
Richard [ 0]
Shane [-1]
Tomas [ 0]
Kurt [-1] # 2021-06-30
Matthias [+0]
Nicola [+1]
----------------
topic: Accept the concept of the refactor proposed in PR 15854 for 3.0
Proposed by Matt Caswell
Public: yes
opened: 2021-06-22
closed: 2021-06-22
accepted: yes (for: 5, against: 1, abstained: 2, not voted: 1)
Matt [+1]
Pauli [+1]
Tim [-1]
Richard [ 0]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [ ]
Nicola [+0]
----------------
topic: Change the outlen paramter from unsigned int * to size_t * for EVP_Q_mac
and size from unsigned int * to size_t * for EVP_Q_digest.
Proposed by Nicola Tuveri
Public: yes
opened: 2021-06-22
closed: 2021-06-22
accepted: yes (for: 5, against: 3, abstained: 0, not voted: 1)
Matt [-1]
Pauli [+1]
Tim [-1]
Richard [+1]
Shane [-1]
Tomas [+1]
Kurt [+1]
Matthias [ ]
Nicola [+1]
----------------
topic: OTC approve the release of 3.0 beta1 on Thursday 17th June on the basis
that: 1) all current approved PRs with the beta1 milestone are merged
2) issues #15755 and #15756 are resolved 3) We accept that VMS does not
currently pass tests but expect it to do so before 3.0 final (issue
#15757)
Proposed by Matt Caswell
Public: yes
opened: 2021-06-15
closed: 2021-06-15
accepted: yes (for: 7, against: 0, abstained: 0, not voted: 2)
Matt [+1]
Pauli [+1]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [ 0] # 2021-06-15
Matthias [+1] # 2021-06-15
Nicola [+1]
----------------
topic: Reject PR#14759
Proposed by Nicola Tuveri
Public: yes
opened: 2021-04-20
closed: 2021-05-04
accepted: yes (for: 3, against: 2, abstained: 4, not voted: 2)
Matt [ 0]
Mark [ ]
Pauli [-0]
Viktor [ ]
Tim [-1]
Richard [ 0]
Shane [+1]
Tomas [-1]
Kurt [+1]
Matthias [ 0]
Nicola [+1]
----------------
topic: Set PR 13817 milestone to Post 3.0
Proposed by Tim Hudson
Public: yes
opened: 2021-04-20
closed: 2021-05-21
accepted: yes (for: 2, against: 0, abstained: 7, not voted: 2)
Matt [ 0]
Mark [ ]
Pauli [+0]
Viktor [ ]
Tim [+1]
Richard [ 0]
Shane [+1]
Tomas [ 0]
Kurt [ 0]
Matthias [ 0]
Nicola [ 0]
----------------
topic: Set issue 11164 milestone to Post 3.0
Proposed by Tim Hudson
Public: yes
opened: 2021-04-20
closed: 2021-04-20
accepted: yes (for: 6, against: 1, abstained: 0, not voted: 4)
Matt [+1]
Mark [ ]
Pauli [+1] # 2021-04-21
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [-1] # 2021-04-22
Matthias [+1]
Nicola [-1]
----------------
topic: EVP_PKEY types are immutable once set. Types cannot be changed once
set. To move from one type to another compatible type will require
export/import.
Comment: This will result in breaking changes compared to previous releases.
Proposed by Tim
Public: yes
opened: 2021-03-23
closed: 2021-03-23
accepted: yes (for: 6, against: 0, abstained: 0, not voted: 5)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1] # 2021-03-30
Matthias [+1] # 2021-03-23
Nicola [+1] # 2021-03-30
----------------
topic: Add a description field to the OSSL_ALGORITHM structure
Comment: See Issue #14514 for background
Proposed by Matt Caswell
Public: yes
opened: 2021-03-16
closed: 2021-03-23
accepted: yes (for: 6, against: 2, abstained: 1, not voted: 2)
Matt [+1]
Mark [ ]
Pauli [-1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [ 0]
Tomas [+1]
Kurt [-1]
Matthias [+1]
Nicola [+1]
----------------
topic: EVP init functions take an OSSL_PARAM array to set parameters and this
should be reflected in the equivalent provider interface.
Proposed by Matt Caswell
Public: yes
opened: 2021-03-09
closed: 2021-03-09
accepted: yes (for: 5, against: 0, abstained: 2, not voted: 4)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [ 0]
Shane [+1]
Tomas [+1]
Kurt [+1] # 2021-03-09
Matthias [+0] # 2021-03-09
Nicola [+0]
----------------
topic: In 3.0 it will not be possible to use SM2 with a non-SM2 curve. This
should be documented.
Proposed by Matt Caswell
Public: yes
opened: 2021-03-09
closed: 2021-03-16
accepted: yes (for: 7, against: 1, abstained: 1, not voted: 2)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [ 0]
Kurt [+1]
Matthias [+1]
Nicola [-1]
----------------
topic: EVP_PKEY_get0 functions will return a cached copy of the legacy key, and
will be changed to return const. EVP_PKEY_get1 functions work as per
EVP_PKEY_get0 but are not const returns and up the reference count
Comment: See PR #14319 for background
Proposed by Matt Caswell
Public: yes
opened: 2021-03-02
closed: 2021-03-02
accepted: yes (for: 7, against: 0, abstained: 0, not voted: 4)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [ 0] # 2021-03-03
Matthias [+0] # 2021-03-09
Nicola [+1]
----------------
topic: The RSA_SSLV23_PADDING and related functions should be
completely removed from OpenSSL 3.0 code.
Proposed by Tomas Mraz
Public: yes
opened: 2021-02-23
closed: 2021-02-28
accepted: yes (for: 6, against: 0, abstained: 5, not voted: 0)
Matt [ 0]
Mark [ 0]
Pauli [+1]
Viktor [+1]
Tim [ 0]
Richard [ 0]
Shane [ 0]
Tomas [+1]
Kurt [+1]
Matthias [+1]
Nicola [+1]
----------------
topic: We allow calling a free function on an algorithm method for methods that
were not fetched. The free function does nothing in that case.
EVP_MD_CTX_md will be deprecated and documented as having "get0"
semantics. We will replace it with EVP_MD_CTX_get0_md and
EVP_MD_CTX_get1_md. We should do the same for other similar functions
Proposed by Matt Caswell
Public: yes
opened: 2021-02-23
closed: 2021-02-23
accepted: yes (for: 4, against: 0, abstained: 5, not voted: 2)
Matt [+1]
Mark [ ]
Pauli [ 0]
Viktor [ ]
Tim [+1]
Richard [ 0]
Shane [+0]
Tomas [+0]
Kurt [ 0]
Matthias [+1]
Nicola [+1]
----------------
topic: Change PKCS#12 creation to use AES-256-CBC and SHA-256 by default.
comment: Both app and API, inlcude CHANGES entry.
Proposed by Pauli.
Public: yes
opened: 2021-02-09
closed: 2021-02-09
accepted: yes (for: 8, against: 0, abstained: 0, not voted: 3)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [+1] # 2021-02-13
Nicola [+1]
----------------
topic: The EVP_xxx_CTX types should support an EVP_xxx_CTX_dup call but not an
EVP_xxx_CTX_copy call.
comments: Existing EVP_xxx_copy() functions not to be removed in the 3.0
timeframe.
Proposed by pauli.
Public: yes
opened: 2021-02-02
closed: 2021-02-02
accepted: yes (for: 8, against: 0, abstained: 0, not voted: 3)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [ ]
Nicola [+1]
----------------
topic: We should not support EVP_xxx_reset() operations.
comment: The existing EVP_xxx_dup() function supports this functionality.
Existing EVP_xxx_reset() functions not to be removed in the 3.0
timeframe.
Proposed by pauli.
Public: yes
opened: 2021-02-02
closed: 2021-02-02
accepted: yes (for: 7, against: 0, abstained: 1, not voted: 3)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [ 0]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [ ]
Nicola [+1]
----------------
topic: EVP_MAC_init should accept key and key length arguments.
Proposed by pauli.
Public: yes
opened: 2021-02-02
closed: 2021-02-02
accepted: yes (for: 4, against: 1, abstained: 4, not voted: 2)
Matt [ 0]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [ 0]
Tomas [+1]
Kurt [-1]
Matthias [-0]
Nicola [ 0]
----------------
topic: EVP init functions should accept an OSSL_PARAM array to set parameters.
comment: This will mostly avoid calling the equivalent set_param call.
Proposed by pauli.
Public: yes
opened: 2021-02-02
closed: 2021-02-02
accepted: yes (for: 8, against: 0, abstained: 1, not voted: 2)
Matt [+1]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [+1]
Matthias [+1]
Nicola [ 0]
----------------
topic: Where a function does not use the TYPE_NAME_action_name naming scheme,
it is considered to be a defect.
comment: These are not considered blockers for 3.0 if the function existed in
1.1.1. New functions that do not conform must be fixed before release.
Proposed by pauli.
Public: yes
opened: 2021-02-02
closed: 2021-02-02
accepted: yes (for: 6, against: 0, abstained: 3, not voted: 2)
Matt [ 0]
Mark [ ]
Pauli [+1]
Viktor [ ]
Tim [+1]
Richard [+1]
Shane [+1]
Tomas [+1]
Kurt [ 0]
Matthias [+1]
Nicola [ 0]