objc2-security 0.3.2

Bindings to the Security framework
Documentation
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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
#[cfg(feature = "objc2")]
use objc2::__framework_prelude::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_ber_tag?language=objc)
#[cfg(feature = "cssmconfig")]
pub type CSSM_BER_TAG = uint8;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_algorithm_identifier_ptr?language=objc)
#[deprecated]
#[cfg(feature = "SecAsn1Types")]
pub type CSSM_X509_ALGORITHM_IDENTIFIER_PTR = *mut SecAsn1AlgId;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_type_value_pair?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_type_value_pair {
    pub r#type: SecAsn1Oid,
    pub valueType: CSSM_BER_TAG,
    pub value: SecAsn1Item,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509_type_value_pair {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_type_value_pair",
        &[
            <SecAsn1Oid>::ENCODING,
            <CSSM_BER_TAG>::ENCODING,
            <SecAsn1Item>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509_type_value_pair {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_type_value_pair?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_TYPE_VALUE_PAIR = cssm_x509_type_value_pair;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_type_value_pair_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_TYPE_VALUE_PAIR_PTR = *mut cssm_x509_type_value_pair;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_rdn?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_rdn {
    pub numberOfPairs: uint32,
    pub AttributeTypeAndValue: CSSM_X509_TYPE_VALUE_PAIR_PTR,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509_rdn {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_rdn",
        &[
            <uint32>::ENCODING,
            <CSSM_X509_TYPE_VALUE_PAIR_PTR>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509_rdn {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_rdn?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_RDN = cssm_x509_rdn;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_rdn_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_RDN_PTR = *mut cssm_x509_rdn;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_name?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_name {
    pub numberOfRDNs: uint32,
    pub RelativeDistinguishedName: CSSM_X509_RDN_PTR,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509_name {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_name",
        &[<uint32>::ENCODING, <CSSM_X509_RDN_PTR>::ENCODING],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509_name {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_name?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_NAME = cssm_x509_name;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_name_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_NAME_PTR = *mut cssm_x509_name;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_subject_public_key_info_ptr?language=objc)
#[deprecated]
#[cfg(feature = "SecAsn1Types")]
pub type CSSM_X509_SUBJECT_PUBLIC_KEY_INFO_PTR = *mut SecAsn1PubKeyInfo;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_time?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_time {
    pub timeType: CSSM_BER_TAG,
    pub time: SecAsn1Item,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509_time {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_time",
        &[<CSSM_BER_TAG>::ENCODING, <SecAsn1Item>::ENCODING],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509_time {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_time?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_TIME = cssm_x509_time;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_time_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_TIME_PTR = *mut cssm_x509_time;

/// [Apple's documentation](https://developer.apple.com/documentation/security/x509_validity?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct x509_validity {
    pub notBefore: CSSM_X509_TIME,
    pub notAfter: CSSM_X509_TIME,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for x509_validity {
    const ENCODING: Encoding = Encoding::Struct(
        "x509_validity",
        &[<CSSM_X509_TIME>::ENCODING, <CSSM_X509_TIME>::ENCODING],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for x509_validity {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_validity?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_VALIDITY = x509_validity;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_validity_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509_VALIDITY_PTR = *mut x509_validity;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_option?language=objc)
#[cfg(all(feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_OPTION = CSSM_BOOL;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_basicconstraints?language=objc)
#[cfg(all(feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509ext_basicConstraints {
    pub cA: CSSM_BOOL,
    pub pathLenConstraintPresent: CSSM_X509_OPTION,
    pub pathLenConstraint: uint32,
}

#[cfg(all(feature = "cssmconfig", feature = "cssmtype", feature = "objc2"))]
unsafe impl Encode for cssm_x509ext_basicConstraints {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509ext_basicConstraints",
        &[
            <CSSM_BOOL>::ENCODING,
            <CSSM_X509_OPTION>::ENCODING,
            <uint32>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "cssmconfig", feature = "cssmtype", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509ext_basicConstraints {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_basicconstraints?language=objc)
#[deprecated]
#[cfg(all(feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509EXT_BASICCONSTRAINTS = cssm_x509ext_basicConstraints;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_basicconstraints_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509EXT_BASICCONSTRAINTS_PTR = *mut cssm_x509ext_basicConstraints;

/// [Apple's documentation](https://developer.apple.com/documentation/security/extension_data_format?language=objc)
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct extension_data_format(pub c_uint);
impl extension_data_format {
    pub const CSSM_X509_DATAFORMAT_ENCODED: Self = Self(0);
    pub const CSSM_X509_DATAFORMAT_PARSED: Self = Self(1);
    pub const CSSM_X509_DATAFORMAT_PAIR: Self = Self(2);
}

#[cfg(feature = "objc2")]
unsafe impl Encode for extension_data_format {
    const ENCODING: Encoding = c_uint::ENCODING;
}

#[cfg(feature = "objc2")]
unsafe impl RefEncode for extension_data_format {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_data_format?language=objc)
pub type CSSM_X509EXT_DATA_FORMAT = extension_data_format;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extensiontagandvalue?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_extensionTagAndValue {
    pub r#type: CSSM_BER_TAG,
    pub value: SecAsn1Item,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509_extensionTagAndValue {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_extensionTagAndValue",
        &[<CSSM_BER_TAG>::ENCODING, <SecAsn1Item>::ENCODING],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509_extensionTagAndValue {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_tagandvalue?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_TAGandVALUE = cssm_x509_extensionTagAndValue;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_tagandvalue_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_TAGandVALUE_PTR = *mut cssm_x509_extensionTagAndValue;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_pair?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509ext_pair {
    pub tagAndValue: CSSM_X509EXT_TAGandVALUE,
    pub parsedValue: *mut c_void,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509ext_pair {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509ext_pair",
        &[
            <CSSM_X509EXT_TAGandVALUE>::ENCODING,
            <*mut c_void>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509ext_pair {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_pair?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_PAIR = cssm_x509ext_pair;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_pair_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_PAIR_PTR = *mut cssm_x509ext_pair;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_value?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy)]
pub union cssm_x509ext_value {
    pub tagAndValue: *mut CSSM_X509EXT_TAGandVALUE,
    pub parsedValue: *mut c_void,
    pub valuePair: *mut CSSM_X509EXT_PAIR,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509ext_value {
    const ENCODING: Encoding = Encoding::Union(
        "cssm_x509ext_value",
        &[
            <*mut CSSM_X509EXT_TAGandVALUE>::ENCODING,
            <*mut c_void>::ENCODING,
            <*mut CSSM_X509EXT_PAIR>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509ext_value {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extension?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy)]
pub struct cssm_x509_extension {
    pub extnId: SecAsn1Oid,
    pub critical: CSSM_BOOL,
    pub format: CSSM_X509EXT_DATA_FORMAT,
    pub value: cssm_x509ext_value,
    pub BERvalue: SecAsn1Item,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_extension {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_extension",
        &[
            <SecAsn1Oid>::ENCODING,
            <CSSM_BOOL>::ENCODING,
            <CSSM_X509EXT_DATA_FORMAT>::ENCODING,
            <cssm_x509ext_value>::ENCODING,
            <SecAsn1Item>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_extension {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extension?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_EXTENSION = cssm_x509_extension;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extension_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_EXTENSION_PTR = *mut cssm_x509_extension;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extensions?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_extensions {
    pub numberOfExtensions: uint32,
    pub extensions: CSSM_X509_EXTENSION_PTR,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_extensions {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_extensions",
        &[<uint32>::ENCODING, <CSSM_X509_EXTENSION_PTR>::ENCODING],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_extensions {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extensions?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_EXTENSIONS = cssm_x509_extensions;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_extensions_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_EXTENSIONS_PTR = *mut cssm_x509_extensions;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_tbs_certificate?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_tbs_certificate {
    pub version: SecAsn1Item,
    pub serialNumber: SecAsn1Item,
    pub signature: SecAsn1AlgId,
    pub issuer: CSSM_X509_NAME,
    pub validity: CSSM_X509_VALIDITY,
    pub subject: CSSM_X509_NAME,
    pub subjectPublicKeyInfo: SecAsn1PubKeyInfo,
    pub issuerUniqueIdentifier: SecAsn1Item,
    pub subjectUniqueIdentifier: SecAsn1Item,
    pub extensions: CSSM_X509_EXTENSIONS,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_tbs_certificate {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_tbs_certificate",
        &[
            <SecAsn1Item>::ENCODING,
            <SecAsn1Item>::ENCODING,
            <SecAsn1AlgId>::ENCODING,
            <CSSM_X509_NAME>::ENCODING,
            <CSSM_X509_VALIDITY>::ENCODING,
            <CSSM_X509_NAME>::ENCODING,
            <SecAsn1PubKeyInfo>::ENCODING,
            <SecAsn1Item>::ENCODING,
            <SecAsn1Item>::ENCODING,
            <CSSM_X509_EXTENSIONS>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_tbs_certificate {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_tbs_certificate?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_TBS_CERTIFICATE = cssm_x509_tbs_certificate;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_tbs_certificate_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_TBS_CERTIFICATE_PTR = *mut cssm_x509_tbs_certificate;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signature?language=objc)
#[cfg(feature = "SecAsn1Types")]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_signature {
    pub algorithmIdentifier: SecAsn1AlgId,
    pub encrypted: SecAsn1Item,
}

#[cfg(all(feature = "SecAsn1Types", feature = "objc2"))]
unsafe impl Encode for cssm_x509_signature {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_signature",
        &[<SecAsn1AlgId>::ENCODING, <SecAsn1Item>::ENCODING],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509_signature {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signature?language=objc)
#[deprecated]
#[cfg(feature = "SecAsn1Types")]
pub type CSSM_X509_SIGNATURE = cssm_x509_signature;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signature_ptr?language=objc)
#[deprecated]
#[cfg(feature = "SecAsn1Types")]
pub type CSSM_X509_SIGNATURE_PTR = *mut cssm_x509_signature;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signed_certificate?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_signed_certificate {
    pub certificate: CSSM_X509_TBS_CERTIFICATE,
    pub signature: CSSM_X509_SIGNATURE,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_signed_certificate {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_signed_certificate",
        &[
            <CSSM_X509_TBS_CERTIFICATE>::ENCODING,
            <CSSM_X509_SIGNATURE>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_signed_certificate {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signed_certificate?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_SIGNED_CERTIFICATE = cssm_x509_signed_certificate;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signed_certificate_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_SIGNED_CERTIFICATE_PTR = *mut cssm_x509_signed_certificate;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyqualifierinfo?language=objc)
#[cfg(feature = "SecAsn1Types")]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509ext_policyQualifierInfo {
    pub policyQualifierId: SecAsn1Oid,
    pub value: SecAsn1Item,
}

#[cfg(all(feature = "SecAsn1Types", feature = "objc2"))]
unsafe impl Encode for cssm_x509ext_policyQualifierInfo {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509ext_policyQualifierInfo",
        &[<SecAsn1Oid>::ENCODING, <SecAsn1Item>::ENCODING],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509ext_policyQualifierInfo {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyqualifierinfo?language=objc)
#[deprecated]
#[cfg(feature = "SecAsn1Types")]
pub type CSSM_X509EXT_POLICYQUALIFIERINFO = cssm_x509ext_policyQualifierInfo;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyqualifierinfo_ptr?language=objc)
#[deprecated]
#[cfg(feature = "SecAsn1Types")]
pub type CSSM_X509EXT_POLICYQUALIFIERINFO_PTR = *mut cssm_x509ext_policyQualifierInfo;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyqualifiers?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509ext_policyQualifiers {
    pub numberOfPolicyQualifiers: uint32,
    pub policyQualifier: *mut CSSM_X509EXT_POLICYQUALIFIERINFO,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509ext_policyQualifiers {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509ext_policyQualifiers",
        &[
            <uint32>::ENCODING,
            <*mut CSSM_X509EXT_POLICYQUALIFIERINFO>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509ext_policyQualifiers {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyqualifiers?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_POLICYQUALIFIERS = cssm_x509ext_policyQualifiers;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyqualifiers_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_POLICYQUALIFIERS_PTR = *mut cssm_x509ext_policyQualifiers;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyinfo?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509ext_policyInfo {
    pub policyIdentifier: SecAsn1Oid,
    pub policyQualifiers: CSSM_X509EXT_POLICYQUALIFIERS,
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl Encode for cssm_x509ext_policyInfo {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509ext_policyInfo",
        &[
            <SecAsn1Oid>::ENCODING,
            <CSSM_X509EXT_POLICYQUALIFIERS>::ENCODING,
        ],
    );
}

#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "objc2"))]
unsafe impl RefEncode for cssm_x509ext_policyInfo {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyinfo?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_POLICYINFO = cssm_x509ext_policyInfo;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509ext_policyinfo_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig"))]
pub type CSSM_X509EXT_POLICYINFO_PTR = *mut cssm_x509ext_policyInfo;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_revoked_cert_entry?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_revoked_cert_entry {
    pub certificateSerialNumber: SecAsn1Item,
    pub revocationDate: CSSM_X509_TIME,
    pub extensions: CSSM_X509_EXTENSIONS,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_revoked_cert_entry {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_revoked_cert_entry",
        &[
            <SecAsn1Item>::ENCODING,
            <CSSM_X509_TIME>::ENCODING,
            <CSSM_X509_EXTENSIONS>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_revoked_cert_entry {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_revoked_cert_entry?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_REVOKED_CERT_ENTRY = cssm_x509_revoked_cert_entry;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_revoked_cert_entry_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_REVOKED_CERT_ENTRY_PTR = *mut cssm_x509_revoked_cert_entry;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_revoked_cert_list?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_revoked_cert_list {
    pub numberOfRevokedCertEntries: uint32,
    pub revokedCertEntry: CSSM_X509_REVOKED_CERT_ENTRY_PTR,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_revoked_cert_list {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_revoked_cert_list",
        &[
            <uint32>::ENCODING,
            <CSSM_X509_REVOKED_CERT_ENTRY_PTR>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_revoked_cert_list {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_revoked_cert_list?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_REVOKED_CERT_LIST = cssm_x509_revoked_cert_list;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_revoked_cert_list_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_REVOKED_CERT_LIST_PTR = *mut cssm_x509_revoked_cert_list;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_tbs_certlist?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_tbs_certlist {
    pub version: SecAsn1Item,
    pub signature: SecAsn1AlgId,
    pub issuer: CSSM_X509_NAME,
    pub thisUpdate: CSSM_X509_TIME,
    pub nextUpdate: CSSM_X509_TIME,
    pub revokedCertificates: CSSM_X509_REVOKED_CERT_LIST_PTR,
    pub extensions: CSSM_X509_EXTENSIONS,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_tbs_certlist {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_tbs_certlist",
        &[
            <SecAsn1Item>::ENCODING,
            <SecAsn1AlgId>::ENCODING,
            <CSSM_X509_NAME>::ENCODING,
            <CSSM_X509_TIME>::ENCODING,
            <CSSM_X509_TIME>::ENCODING,
            <CSSM_X509_REVOKED_CERT_LIST_PTR>::ENCODING,
            <CSSM_X509_EXTENSIONS>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_tbs_certlist {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_tbs_certlist?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_TBS_CERTLIST = cssm_x509_tbs_certlist;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_tbs_certlist_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_TBS_CERTLIST_PTR = *mut cssm_x509_tbs_certlist;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signed_crl?language=objc)
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
#[deprecated]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct cssm_x509_signed_crl {
    pub tbsCertList: CSSM_X509_TBS_CERTLIST,
    pub signature: CSSM_X509_SIGNATURE,
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl Encode for cssm_x509_signed_crl {
    const ENCODING: Encoding = Encoding::Struct(
        "cssm_x509_signed_crl",
        &[
            <CSSM_X509_TBS_CERTLIST>::ENCODING,
            <CSSM_X509_SIGNATURE>::ENCODING,
        ],
    );
}

#[cfg(all(
    feature = "SecAsn1Types",
    feature = "cssmconfig",
    feature = "cssmtype",
    feature = "objc2"
))]
unsafe impl RefEncode for cssm_x509_signed_crl {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signed_crl?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_SIGNED_CRL = cssm_x509_signed_crl;

/// [Apple's documentation](https://developer.apple.com/documentation/security/cssm_x509_signed_crl_ptr?language=objc)
#[deprecated]
#[cfg(all(feature = "SecAsn1Types", feature = "cssmconfig", feature = "cssmtype"))]
pub type CSSM_X509_SIGNED_CRL_PTR = *mut cssm_x509_signed_crl;