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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
#[cfg(feature = "objc2")]
use objc2::__framework_prelude::*;
use objc2_core_foundation::*;

use crate::*;

#[cfg(feature = "SecBase")]
unsafe impl ConcreteType for SecCertificate {
    /// Returns the type identifier of SecCertificate instances.
    ///
    /// Returns: The CFTypeID of SecCertificate instances.
    #[doc(alias = "SecCertificateGetTypeID")]
    #[inline]
    fn type_id() -> CFTypeID {
        extern "C-unwind" {
            fn SecCertificateGetTypeID() -> CFTypeID;
        }
        unsafe { SecCertificateGetTypeID() }
    }
}

#[cfg(feature = "SecBase")]
impl SecCertificate {
    /// Create a certificate given it's DER representation as a CFData.
    ///
    /// Parameter `allocator`: CFAllocator to allocate the certificate with.
    ///
    /// Parameter `data`: DER encoded X.509 certificate.
    ///
    /// Returns: Return NULL if the passed-in data is not a valid DER-encoded
    /// X.509 certificate, return a SecCertificateRef otherwise.
    #[doc(alias = "SecCertificateCreateWithData")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn with_data(
        allocator: Option<&CFAllocator>,
        data: &CFData,
    ) -> Option<CFRetained<SecCertificate>> {
        extern "C-unwind" {
            fn SecCertificateCreateWithData(
                allocator: Option<&CFAllocator>,
                data: &CFData,
            ) -> Option<NonNull<SecCertificate>>;
        }
        let ret = unsafe { SecCertificateCreateWithData(allocator, data) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the DER representation of an X.509 certificate.
    ///
    /// Parameter `certificate`: SecCertificate object created with
    /// SecCertificateCreateWithData().
    ///
    /// Returns: DER encoded X.509 certificate.
    #[doc(alias = "SecCertificateCopyData")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn data(&self) -> CFRetained<CFData> {
        extern "C-unwind" {
            fn SecCertificateCopyData(certificate: &SecCertificate) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopyData(self) };
        let ret =
            ret.expect("function was marked as returning non-null, but actually returned NULL");
        unsafe { CFRetained::from_raw(ret) }
    }

    /// Return a simple string which hopefully represents a human
    /// understandable summary.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to derive
    /// the subject summary string.
    ///
    /// All the data in this string comes from the certificate itself
    /// and thus it's in whatever language the certificate itself is in.
    ///
    /// Returns: A CFStringRef which the caller should CFRelease() once it's no
    /// longer needed.
    #[doc(alias = "SecCertificateCopySubjectSummary")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn subject_summary(&self) -> Option<CFRetained<CFString>> {
        extern "C-unwind" {
            fn SecCertificateCopySubjectSummary(
                certificate: &SecCertificate,
            ) -> Option<NonNull<CFString>>;
        }
        let ret = unsafe { SecCertificateCopySubjectSummary(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Retrieves the common name of the subject of a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to retrieve the common name.
    ///
    /// Parameter `commonName`: On return, a reference to the common name. Your code must release this reference by calling the CFRelease function.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// All the data in this string comes from the certificate itself, and thus it's in whatever language the certificate itself is in.
    /// Note that the certificate's common name field may not be present, or may be inadequate to describe the certificate; for display purposes,
    /// you should consider using SecCertificateCopySubjectSummary instead of this function.
    ///
    /// # Safety
    ///
    /// `common_name` must be a valid pointer.
    #[doc(alias = "SecCertificateCopyCommonName")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn copy_common_name(&self, common_name: NonNull<*const CFString>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateCopyCommonName(
                certificate: &SecCertificate,
                common_name: NonNull<*const CFString>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateCopyCommonName(self, common_name) }
    }

    /// Returns an array of zero or more email addresses for the subject of a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to retrieve the email addresses.
    ///
    /// Parameter `emailAddresses`: On return, an array of zero or more CFStringRef elements corresponding to each email address found.
    /// Your code must release this array reference by calling the CFRelease function.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// # Safety
    ///
    /// `email_addresses` must be a valid pointer.
    #[doc(alias = "SecCertificateCopyEmailAddresses")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn copy_email_addresses(
        &self,
        email_addresses: NonNull<*const CFArray>,
    ) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateCopyEmailAddresses(
                certificate: &SecCertificate,
                email_addresses: NonNull<*const CFArray>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateCopyEmailAddresses(self, email_addresses) }
    }

    /// Return the certificate's normalized issuer
    ///
    /// Parameter `certificate`: The certificate from which to get values
    ///
    /// The issuer is a sequence in the format used by SecItemCopyMatching.  The content returned is a DER-encoded X.509 distinguished name. For a display version of the issuer, call SecCertificateCopyValues. The caller must CFRelease the value returned.
    #[doc(alias = "SecCertificateCopyNormalizedIssuerSequence")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn normalized_issuer_sequence(&self) -> Option<CFRetained<CFData>> {
        extern "C-unwind" {
            fn SecCertificateCopyNormalizedIssuerSequence(
                certificate: &SecCertificate,
            ) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopyNormalizedIssuerSequence(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the certificate's normalized subject
    ///
    /// Parameter `certificate`: The certificate from which to get values
    ///
    /// The subject is a sequence in the format used by SecItemCopyMatching. The content returned is a DER-encoded X.509 distinguished name. For a display version of the subject, call SecCertificateCopyValues. The caller must CFRelease the value returned.
    #[doc(alias = "SecCertificateCopyNormalizedSubjectSequence")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn normalized_subject_sequence(&self) -> Option<CFRetained<CFData>> {
        extern "C-unwind" {
            fn SecCertificateCopyNormalizedSubjectSequence(
                certificate: &SecCertificate,
            ) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopyNormalizedSubjectSequence(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Retrieves the public key for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to retrieve the public key.
    ///
    /// Returns: A reference to the public key for the specified certificate. Your code must release this reference by calling the CFRelease function. If the public key has an encoding issue or uses an unsupported algorithm, the returned reference will be null.
    ///
    /// RSA and ECDSA public keys are supported. All other public key algorithms are unsupported.
    #[doc(alias = "SecCertificateCopyKey")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn key(&self) -> Option<CFRetained<SecKey>> {
        extern "C-unwind" {
            fn SecCertificateCopyKey(certificate: &SecCertificate) -> Option<NonNull<SecKey>>;
        }
        let ret = unsafe { SecCertificateCopyKey(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Retrieves the public key for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to retrieve the public key.
    ///
    /// Parameter `key`: On return, a reference to the public key for the specified certificate. Your code must release this reference by calling the CFRelease function.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// NOTE: Deprecated in macOS 10.14; use SecCertificateCopyKey instead for cross-platform availability.
    ///
    /// # Safety
    ///
    /// `key` must be a valid pointer.
    #[doc(alias = "SecCertificateCopyPublicKey")]
    #[cfg(feature = "SecBase")]
    #[deprecated]
    #[inline]
    pub unsafe fn copy_public_key(&self, key: NonNull<*mut SecKey>) -> OSStatus {
        extern "C-unwind" {
            #[cfg_attr(
                target_os = "macos",
                link_name = "SecCertificateCopyPublicKey$LEGACYMAC"
            )]
            fn SecCertificateCopyPublicKey(
                certificate: &SecCertificate,
                key: NonNull<*mut SecKey>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateCopyPublicKey(self, key) }
    }

    /// Return the certificate's serial number.
    ///
    /// Parameter `certificate`: The certificate from which to get values.
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef which will be set on return from the function if an error occurred. If not NULL, the caller is responsible for releasing the CFErrorRef.
    ///
    /// Return the content of a DER-encoded integer (without the tag and length fields) for this certificate's serial number. The caller must CFRelease the value returned.
    ///
    /// # Safety
    ///
    /// `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopySerialNumberData")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn serial_number_data(
        &self,
        error: *mut *mut CFError,
    ) -> Option<CFRetained<CFData>> {
        extern "C-unwind" {
            fn SecCertificateCopySerialNumberData(
                certificate: &SecCertificate,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopySerialNumberData(self, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Obtain the starting date of the given certificate.
    ///
    /// Parameter `certificate`: The certificate from which to get values.
    ///
    /// Returns: Returns the absolute time at which the given certificate becomes valid,
    /// or NULL if this value could not be obtained. The caller must CFRelease the value returned.
    #[doc(alias = "SecCertificateCopyNotValidBeforeDate")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn not_valid_before_date(&self) -> Option<CFRetained<CFDate>> {
        extern "C-unwind" {
            fn SecCertificateCopyNotValidBeforeDate(
                certificate: &SecCertificate,
            ) -> Option<NonNull<CFDate>>;
        }
        let ret = unsafe { SecCertificateCopyNotValidBeforeDate(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Obtain the expiration date of the given certificate.
    ///
    /// Parameter `certificate`: The certificate from which to get values.
    ///
    /// Returns: Returns the absolute time at which the given certificate expires,
    /// or NULL if this value could not be obtained. The caller must CFRelease the value returned.
    #[doc(alias = "SecCertificateCopyNotValidAfterDate")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn not_valid_after_date(&self) -> Option<CFRetained<CFDate>> {
        extern "C-unwind" {
            fn SecCertificateCopyNotValidAfterDate(
                certificate: &SecCertificate,
            ) -> Option<NonNull<CFDate>>;
        }
        let ret = unsafe { SecCertificateCopyNotValidAfterDate(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the certificate's serial number.
    ///
    /// Parameter `certificate`: The certificate from which to get values.
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef which will be set on return from the function if an error occurred. If not NULL, the caller is responsible for releasing the CFErrorRef.
    ///
    /// Return the content of a DER-encoded integer (without the tag and length fields) for this certificate's serial number. The caller must CFRelease the value returned. NOTE: Deprecated in macOS 10.13; use SecCertificateCopySerialNumberData instead for cross-platform availability.
    ///
    /// # Safety
    ///
    /// `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopySerialNumber")]
    #[cfg(feature = "SecBase")]
    #[deprecated]
    #[inline]
    pub unsafe fn serial_number(&self, error: *mut *mut CFError) -> Option<CFRetained<CFData>> {
        extern "C-unwind" {
            #[cfg_attr(
                target_os = "macos",
                link_name = "SecCertificateCopySerialNumber$LEGACYMAC"
            )]
            fn SecCertificateCopySerialNumber(
                certificate: &SecCertificate,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopySerialNumber(self, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }
}

/// [Apple's documentation](https://developer.apple.com/documentation/security/ksecsubjectitemattr?language=objc)
pub const kSecSubjectItemAttr: c_uint = 1937072746;
/// [Apple's documentation](https://developer.apple.com/documentation/security/ksecissueritemattr?language=objc)
pub const kSecIssuerItemAttr: c_uint = 1769173877;
/// [Apple's documentation](https://developer.apple.com/documentation/security/ksecserialnumberitemattr?language=objc)
pub const kSecSerialNumberItemAttr: c_uint = 1936614002;
/// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpublickeyhashitemattr?language=objc)
pub const kSecPublicKeyHashItemAttr: c_uint = 1752198009;
/// [Apple's documentation](https://developer.apple.com/documentation/security/ksecsubjectkeyidentifieritemattr?language=objc)
pub const kSecSubjectKeyIdentifierItemAttr: c_uint = 1936419172;
/// [Apple's documentation](https://developer.apple.com/documentation/security/kseccerttypeitemattr?language=objc)
pub const kSecCertTypeItemAttr: c_uint = 1668577648;
/// [Apple's documentation](https://developer.apple.com/documentation/security/kseccertencodingitemattr?language=objc)
pub const kSecCertEncodingItemAttr: c_uint = 1667591779;

#[cfg(feature = "SecBase")]
impl SecCertificate {
    /// Creates a certificate based on the input data, type, and encoding.
    ///
    /// Parameter `data`: A pointer to the certificate data.
    ///
    /// Parameter `type`: The certificate type as defined in cssmtype.h.
    ///
    /// Parameter `encoding`: The certificate encoding as defined in cssmtype.h.
    ///
    /// Parameter `certificate`: On return, a reference to the newly created certificate.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This API is deprecated in 10.7  Please use the SecCertificateCreateWithData API instead.
    ///
    /// # Safety
    ///
    /// - `data` must be a valid pointer.
    /// - `certificate` must be a valid pointer.
    #[doc(alias = "SecCertificateCreateFromData")]
    #[cfg(all(
        feature = "SecAsn1Types",
        feature = "SecBase",
        feature = "cssmconfig",
        feature = "cssmtype"
    ))]
    #[deprecated]
    #[inline]
    pub unsafe fn create_from_data(
        data: NonNull<SecAsn1Item>,
        r#type: CSSM_CERT_TYPE,
        encoding: CSSM_CERT_ENCODING,
        certificate: NonNull<*mut SecCertificate>,
    ) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateCreateFromData(
                data: NonNull<SecAsn1Item>,
                r#type: CSSM_CERT_TYPE,
                encoding: CSSM_CERT_ENCODING,
                certificate: NonNull<*mut SecCertificate>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateCreateFromData(data, r#type, encoding, certificate) }
    }

    /// Adds a certificate to the specified keychain.
    ///
    /// Parameter `certificate`: A reference to a certificate.
    ///
    /// Parameter `keychain`: A reference to the keychain in which to add the certificate. Pass NULL to add the certificate to the default keychain.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This function is successful only if the certificate was created using the SecCertificateCreateFromData or
    /// SecCertificateCreateWithData functions, and the certificate has not yet been added to the specified keychain.
    #[doc(alias = "SecCertificateAddToKeychain")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn add_to_keychain(&self, keychain: Option<&SecKeychain>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateAddToKeychain(
                certificate: &SecCertificate,
                keychain: Option<&SecKeychain>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateAddToKeychain(self, keychain) }
    }

    /// Retrieves the data for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to retrieve the data.
    ///
    /// Parameter `data`: On return, the CSSM_DATA structure pointed to by data is filled in. You must allocate the space for a CSSM_DATA structure before calling this function. This data pointer is only guaranteed to remain valid as long as the certificate remains unchanged and valid.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This API is deprecated in 10.7. Please use the SecCertificateCopyData API instead.
    ///
    /// # Safety
    ///
    /// `data` must be a valid pointer.
    #[doc(alias = "SecCertificateGetData")]
    #[cfg(all(feature = "SecAsn1Types", feature = "SecBase", feature = "cssmtype"))]
    #[deprecated]
    #[inline]
    pub unsafe fn get_data(&self, data: CSSM_DATA_PTR) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateGetData(certificate: &SecCertificate, data: CSSM_DATA_PTR)
                -> OSStatus;
        }
        unsafe { SecCertificateGetData(self, data) }
    }

    /// Retrieves the type for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to obtain the type.
    ///
    /// Parameter `certificateType`: On return, the certificate type of the certificate. Certificate types are defined in cssmtype.h.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This API is deprecated in 10.7. Please use the SecCertificateCopyValues API instead.
    ///
    /// # Safety
    ///
    /// `certificate_type` must be a valid pointer.
    #[doc(alias = "SecCertificateGetType")]
    #[cfg(all(feature = "SecBase", feature = "cssmconfig", feature = "cssmtype"))]
    #[deprecated]
    #[inline]
    pub unsafe fn r#type(&self, certificate_type: NonNull<CSSM_CERT_TYPE>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateGetType(
                certificate: &SecCertificate,
                certificate_type: NonNull<CSSM_CERT_TYPE>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateGetType(self, certificate_type) }
    }

    /// Retrieves the subject name for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to obtain the subject name.
    ///
    /// Parameter `subject`: On return, a pointer to a CSSM_X509_NAME struct which contains the subject's X.509 name (x509defs.h). This pointer remains valid until the certificate reference is released. The caller should not attempt to free this pointer.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// Prior to Mac OS X 10.5, this function did not return any output in the subject parameter. Your code should check the returned pointer value (in addition to the function result) before attempting to use it.
    /// For example:
    /// const CSSM_X509_NAME *subject = NULL;
    /// OSStatus status = SecCertificateGetSubject(certificate,
    /// &subject
    /// );
    /// if ( (status == errSecSuccess)
    /// &
    /// &
    /// (subject != NULL) ) {
    /// // subject is valid
    /// }
    /// This API is deprecated in 10.7. Please use the SecCertificateCopyValues API instead.
    ///
    /// # Safety
    ///
    /// `subject` must be a valid pointer.
    #[doc(alias = "SecCertificateGetSubject")]
    #[cfg(all(
        feature = "SecAsn1Types",
        feature = "SecBase",
        feature = "cssmconfig",
        feature = "x509defs"
    ))]
    #[deprecated]
    #[inline]
    pub unsafe fn subject(&self, subject: NonNull<*const CSSM_X509_NAME>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateGetSubject(
                certificate: &SecCertificate,
                subject: NonNull<*const CSSM_X509_NAME>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateGetSubject(self, subject) }
    }

    /// Retrieves the issuer name for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to obtain the issuer name.
    ///
    /// Parameter `issuer`: On return, a pointer to a CSSM_X509_NAME struct which contains the issuer's X.509 name (x509defs.h). This pointer remains valid until the certificate reference is released. The caller should not attempt to free this pointer.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// Prior to Mac OS X 10.5, this function did not return any output in the issuer parameter. Your code should check the returned pointer value (in addition to the function result) before attempting to use it.
    /// For example:
    /// const CSSM_X509_NAME *issuer = NULL;
    /// OSStatus status = SecCertificateGetIssuer(certificate,
    /// &issuer
    /// );
    /// if ( (status == errSecSuccess)
    /// &
    /// &
    /// (issuer != NULL) ) {
    /// // issuer is valid
    /// }
    /// This API is deprecated in 10.7. Please use the SecCertificateCopyValues API instead.
    ///
    /// # Safety
    ///
    /// `issuer` must be a valid pointer.
    #[doc(alias = "SecCertificateGetIssuer")]
    #[cfg(all(
        feature = "SecAsn1Types",
        feature = "SecBase",
        feature = "cssmconfig",
        feature = "x509defs"
    ))]
    #[deprecated]
    #[inline]
    pub unsafe fn issuer(&self, issuer: NonNull<*const CSSM_X509_NAME>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateGetIssuer(
                certificate: &SecCertificate,
                issuer: NonNull<*const CSSM_X509_NAME>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateGetIssuer(self, issuer) }
    }

    /// Retrieves the certificate library handle for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to obtain the certificate library handle.
    ///
    /// Parameter `clHandle`: On return, the certificate library handle of the given certificate. This handle remains valid at least as long as the certificate does.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This API is deprecated in 10.7. Please use the SecCertificateCopyValues API instead.
    ///
    /// # Safety
    ///
    /// `cl_handle` must be a valid pointer.
    #[doc(alias = "SecCertificateGetCLHandle")]
    #[cfg(all(feature = "SecBase", feature = "cssmconfig", feature = "cssmtype"))]
    #[deprecated]
    #[inline]
    pub unsafe fn cl_handle(&self, cl_handle: NonNull<CSSM_CL_HANDLE>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateGetCLHandle(
                certificate: &SecCertificate,
                cl_handle: NonNull<CSSM_CL_HANDLE>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateGetCLHandle(self, cl_handle) }
    }

    /// Retrieves the algorithm identifier for a given certificate.
    ///
    /// Parameter `certificate`: A reference to the certificate from which to retrieve the algorithm identifier.
    ///
    /// Parameter `algid`: On return, a pointer to a CSSM_X509_ALGORITHM_IDENTIFIER struct which identifies the algorithm for this certificate (x509defs.h). This pointer remains valid until the certificate reference is released. The caller should not attempt to free this pointer.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    /// discussion This API is deprecated in 10.7. Please use the SecCertificateCopyValues API instead.
    ///
    /// # Safety
    ///
    /// `algid` must be a valid pointer.
    #[doc(alias = "SecCertificateGetAlgorithmID")]
    #[cfg(all(feature = "SecAsn1Types", feature = "SecBase"))]
    #[deprecated]
    #[inline]
    pub unsafe fn algorithm_id(&self, algid: NonNull<*const SecAsn1AlgId>) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateGetAlgorithmID(
                certificate: &SecCertificate,
                algid: NonNull<*const SecAsn1AlgId>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateGetAlgorithmID(self, algid) }
    }

    /// Returns the preferred certificate for the specified name and key usage. If a preferred certificate does not exist for the specified name and key usage, NULL is returned.
    ///
    /// Parameter `name`: A string containing an email address (RFC822) or other name for which a preferred certificate is requested.
    ///
    /// Parameter `keyUsage`: A CSSM_KEYUSE key usage value, as defined in cssmtype.h. Pass 0 to ignore this parameter.
    ///
    /// Parameter `certificate`: On return, a reference to the preferred certificate, or NULL if none was found. You are responsible for releasing this reference by calling the CFRelease function.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This function will typically be used to obtain the preferred encryption certificate for an email recipient.
    /// This API is deprecated in 10.7. Please use the SecCertificateCopyPreferred API instead.
    ///
    /// # Safety
    ///
    /// `certificate` must be a valid pointer.
    #[doc(alias = "SecCertificateCopyPreference")]
    #[cfg(all(feature = "SecBase", feature = "cssmconfig"))]
    #[deprecated]
    #[inline]
    pub unsafe fn copy_preference(
        name: &CFString,
        key_usage: uint32,
        certificate: NonNull<*mut SecCertificate>,
    ) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateCopyPreference(
                name: &CFString,
                key_usage: uint32,
                certificate: NonNull<*mut SecCertificate>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateCopyPreference(name, key_usage, certificate) }
    }

    /// Returns the preferred certificate for the specified name and key usage. If a preferred certificate does not exist for the specified name and key usage, NULL is returned.
    ///
    /// Parameter `name`: A string containing an email address (RFC822) or other name for which a preferred certificate is requested.
    ///
    /// Parameter `keyUsage`: A CFArrayRef value, containing items defined in SecItem.h  Pass NULL to ignore this parameter. (kSecAttrCanEncrypt, kSecAttrCanDecrypt, kSecAttrCanDerive, kSecAttrCanSign, kSecAttrCanVerify, kSecAttrCanWrap, kSecAttrCanUnwrap)
    ///
    /// Returns: On return, a reference to the preferred certificate, or NULL if none was found. You are responsible for releasing this reference by calling the CFRelease function.
    ///
    /// This function will typically be used to obtain the preferred encryption certificate for an email recipient. If a preferred certificate has not been set
    /// for the supplied name, the returned reference will be NULL. Your code should then perform a search for possible certificates, using the SecItemCopyMatching API.
    ///
    /// # Safety
    ///
    /// `key_usage` generic must be of the correct type.
    #[doc(alias = "SecCertificateCopyPreferred")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn preferred(
        name: &CFString,
        key_usage: Option<&CFArray>,
    ) -> Option<CFRetained<SecCertificate>> {
        extern "C-unwind" {
            fn SecCertificateCopyPreferred(
                name: &CFString,
                key_usage: Option<&CFArray>,
            ) -> Option<NonNull<SecCertificate>>;
        }
        let ret = unsafe { SecCertificateCopyPreferred(name, key_usage) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Sets the preferred certificate for a specified name, key usage, and date.
    ///
    /// Parameter `certificate`: A reference to the certificate which will be preferred.
    ///
    /// Parameter `name`: A string containing an email address (RFC822) or other name for which a preferred certificate will be associated.
    ///
    /// Parameter `keyUsage`: A CSSM_KEYUSE key usage value, as defined in cssmtype.h. Pass 0 to avoid specifying a particular key usage.
    ///
    /// Parameter `date`: (optional) A date reference. If supplied, the preferred certificate will be changed only if this date is later than the currently saved setting. Pass NULL if this preference should not be restricted by date.
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This function will typically be used to set the preferred encryption certificate for an email recipient, either manually (when encrypting email to a recipient) or automatically upon receipt of encrypted email.
    /// This API is deprecated in 10.7. Plese use the SecCertificateSetPreferred API instead.
    #[doc(alias = "SecCertificateSetPreference")]
    #[cfg(all(feature = "SecBase", feature = "cssmconfig"))]
    #[deprecated]
    #[inline]
    pub unsafe fn set_preference(
        &self,
        name: &CFString,
        key_usage: uint32,
        date: Option<&CFDate>,
    ) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateSetPreference(
                certificate: &SecCertificate,
                name: &CFString,
                key_usage: uint32,
                date: Option<&CFDate>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateSetPreference(self, name, key_usage, date) }
    }

    /// Sets the preferred certificate for a specified name and optional key usage.
    ///
    /// Parameter `certificate`: A reference to the preferred certificate. If NULL is passed, any existing preference for the specified name is cleared instead.
    ///
    /// Parameter `name`: A string containing an email address (RFC822) or other name for which a preferred certificate will be associated.
    ///
    /// Parameter `keyUsage`: A CFArrayRef value, containing items defined in SecItem.h  Pass NULL to ignore this parameter. (kSecAttrCanEncrypt, kSecAttrCanDecrypt, kSecAttrCanDerive, kSecAttrCanSign, kSecAttrCanVerify, kSecAttrCanWrap, kSecAttrCanUnwrap)
    ///
    /// Returns: A result code. See "Security Error Codes" (SecBase.h).
    ///
    /// This function will typically be used to set the preferred encryption certificate for an email recipient, either manually (when encrypting email to a recipient)
    /// or automatically upon receipt of encrypted email.
    ///
    /// # Safety
    ///
    /// `key_usage` generic must be of the correct type.
    #[doc(alias = "SecCertificateSetPreferred")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn set_preferred(
        certificate: Option<&SecCertificate>,
        name: &CFString,
        key_usage: Option<&CFArray>,
    ) -> OSStatus {
        extern "C-unwind" {
            fn SecCertificateSetPreferred(
                certificate: Option<&SecCertificate>,
                name: &CFString,
                key_usage: Option<&CFArray>,
            ) -> OSStatus;
        }
        unsafe { SecCertificateSetPreferred(certificate, name, key_usage) }
    }
}

/// Flags to indicate key usages in the KeyUsage extension of a certificate
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/security/seckeyusage?language=objc)
// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct SecKeyUsage(pub u32);
bitflags::bitflags! {
    impl SecKeyUsage: u32 {
        #[doc(alias = "kSecKeyUsageUnspecified")]
        const Unspecified = 0;
        #[doc(alias = "kSecKeyUsageDigitalSignature")]
        const DigitalSignature = 1<<0;
        #[doc(alias = "kSecKeyUsageNonRepudiation")]
        const NonRepudiation = 1<<1;
        #[doc(alias = "kSecKeyUsageContentCommitment")]
        const ContentCommitment = 1<<1;
        #[doc(alias = "kSecKeyUsageKeyEncipherment")]
        const KeyEncipherment = 1<<2;
        #[doc(alias = "kSecKeyUsageDataEncipherment")]
        const DataEncipherment = 1<<3;
        #[doc(alias = "kSecKeyUsageKeyAgreement")]
        const KeyAgreement = 1<<4;
        #[doc(alias = "kSecKeyUsageKeyCertSign")]
        const KeyCertSign = 1<<5;
        #[doc(alias = "kSecKeyUsageCRLSign")]
        const CRLSign = 1<<6;
        #[doc(alias = "kSecKeyUsageEncipherOnly")]
        const EncipherOnly = 1<<7;
        #[doc(alias = "kSecKeyUsageDecipherOnly")]
        const DecipherOnly = 1<<8;
        #[doc(alias = "kSecKeyUsageCritical")]
        const Critical = 1<<31;
        #[doc(alias = "kSecKeyUsageAll")]
        const All = 0x7FFFFFFF;
    }
}

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

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

extern "C" {
    /// Constants used to access dictionary entries returned by SecCertificateCopyValues
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertykeytype?language=objc)
    pub static kSecPropertyKeyType: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertykeylabel?language=objc)
    pub static kSecPropertyKeyLabel: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertykeylocalizedlabel?language=objc)
    pub static kSecPropertyKeyLocalizedLabel: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertykeyvalue?language=objc)
    pub static kSecPropertyKeyValue: &'static CFString;
}

extern "C" {
    /// Public Constants for property list values returned by SecCertificateCopyValues
    ///
    /// Note that kSecPropertyTypeTitle and kSecPropertyTypeError are defined in SecTrust.h
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypewarning?language=objc)
    pub static kSecPropertyTypeWarning: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypesuccess?language=objc)
    pub static kSecPropertyTypeSuccess: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypesection?language=objc)
    pub static kSecPropertyTypeSection: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypedata?language=objc)
    pub static kSecPropertyTypeData: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypestring?language=objc)
    pub static kSecPropertyTypeString: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypeurl?language=objc)
    pub static kSecPropertyTypeURL: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypedate?language=objc)
    pub static kSecPropertyTypeDate: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypearray?language=objc)
    pub static kSecPropertyTypeArray: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/security/ksecpropertytypenumber?language=objc)
    pub static kSecPropertyTypeNumber: &'static CFString;
}

#[cfg(feature = "SecBase")]
impl SecCertificate {
    /// Creates a dictionary that represents a certificate's contents.
    ///
    /// Parameter `certificate`: The certificate from which to get values
    ///
    /// Parameter `keys`: An array of string OID values, or NULL. If present, this is
    /// the subset of values from the certificate to return. If NULL,
    /// all values will be returned. Only OIDs that are top level keys
    /// in the returned dictionary can be specified. Unknown OIDs are
    /// ignored.
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef. This value is
    /// set if an error occurred.  If not NULL the caller is
    /// responsible for releasing the CFErrorRef.
    ///
    /// The keys array will contain all of the keys used in the
    /// returned dictionary. The top level keys in the returned
    /// dictionary are OIDs, many of which are found in SecCertificateOIDs.h.
    /// Each entry that is returned is itself a dictionary with four
    /// entries, whose keys are kSecPropertyKeyType, kSecPropertyKeyLabel,
    /// kSecPropertyKeyLocalizedLabel, kSecPropertyKeyValue. The label
    /// entries may contain a descriptive (localized) string, or an
    /// OID string. The kSecPropertyKeyType describes the type in the
    /// value entry. The value entry may be any CFType, although it
    /// is usually a CFStringRef, CFArrayRef or a CFDictionaryRef.
    ///
    /// # Safety
    ///
    /// - `keys` generic must be of the correct type.
    /// - `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopyValues")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn values(
        &self,
        keys: Option<&CFArray>,
        error: *mut *mut CFError,
    ) -> Option<CFRetained<CFDictionary>> {
        extern "C-unwind" {
            fn SecCertificateCopyValues(
                certificate: &SecCertificate,
                keys: Option<&CFArray>,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFDictionary>>;
        }
        let ret = unsafe { SecCertificateCopyValues(self, keys, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the long description of a certificate
    ///
    /// Parameter `alloc`: The CFAllocator which should be used to allocate
    /// memory for the dictionary and its storage for values. This
    /// parameter may be NULL in which case the current default
    /// CFAllocator is used. If this reference is not a valid
    /// CFAllocator, the behavior is undefined.
    ///
    /// Parameter `certificate`: The certificate from which to retrieve the long description
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef. This value is
    /// set if an error occurred.  If not NULL the caller is
    /// responsible for releasing the CFErrorRef.
    ///
    /// Returns: A CFStringRef of the long description or NULL. If NULL and the error
    /// parameter is supplied the error will be returned in the error parameter
    ///
    /// Note that the format of this string may change in the future
    ///
    /// # Safety
    ///
    /// `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopyLongDescription")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn long_description(
        alloc: Option<&CFAllocator>,
        certificate: &SecCertificate,
        error: *mut *mut CFError,
    ) -> Option<CFRetained<CFString>> {
        extern "C-unwind" {
            fn SecCertificateCopyLongDescription(
                alloc: Option<&CFAllocator>,
                certificate: &SecCertificate,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFString>>;
        }
        let ret = unsafe { SecCertificateCopyLongDescription(alloc, certificate, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the short description of a certificate
    ///
    /// Parameter `alloc`: The CFAllocator which should be used to allocate
    /// memory for the dictionary and its storage for values. This
    /// parameter may be NULL in which case the current default
    /// CFAllocator is used. If this reference is not a valid
    /// CFAllocator, the behavior is undefined.
    ///
    /// Parameter `certificate`: The certificate from which to retrieve the short description
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef. This value is
    /// set if an error occurred.  If not NULL the caller is
    /// responsible for releasing the CFErrorRef.
    ///
    /// Returns: A CFStringRef of the short description or NULL. If NULL and the error
    /// parameter is supplied the error will be returned in the error parameter
    ///
    /// Note that the format of this string may change in the future
    ///
    /// # Safety
    ///
    /// `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopyShortDescription")]
    #[cfg(feature = "SecBase")]
    #[inline]
    pub unsafe fn short_description(
        alloc: Option<&CFAllocator>,
        certificate: &SecCertificate,
        error: *mut *mut CFError,
    ) -> Option<CFRetained<CFString>> {
        extern "C-unwind" {
            fn SecCertificateCopyShortDescription(
                alloc: Option<&CFAllocator>,
                certificate: &SecCertificate,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFString>>;
        }
        let ret = unsafe { SecCertificateCopyShortDescription(alloc, certificate, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the certificate's normalized issuer
    ///
    /// Parameter `certificate`: The certificate from which to get values
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef. This value is
    /// set if an error occurred.  If not NULL the caller is
    /// responsible for releasing the CFErrorRef.
    ///
    /// The issuer is a sequence in the format used by
    /// SecItemCopyMatching.  The content returned is a DER-encoded
    /// X.509 distinguished name. For a display version of the issuer,
    /// call SecCertificateCopyValues. The caller must CFRelease
    /// the value returned.
    ///
    /// # Safety
    ///
    /// `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopyNormalizedIssuerContent")]
    #[cfg(feature = "SecBase")]
    #[deprecated = "SecCertificateCopyNormalizedIssuerContent is deprecated. Use SecCertificateCopyNormalizedIssuerSequence instead."]
    #[inline]
    pub unsafe fn normalized_issuer_content(
        &self,
        error: *mut *mut CFError,
    ) -> Option<CFRetained<CFData>> {
        extern "C-unwind" {
            fn SecCertificateCopyNormalizedIssuerContent(
                certificate: &SecCertificate,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopyNormalizedIssuerContent(self, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Return the certificate's normalized subject
    ///
    /// Parameter `certificate`: The certificate from which to get values
    ///
    /// Parameter `error`: An optional pointer to a CFErrorRef. This value is
    /// set if an error occurred.  If not NULL the caller is
    /// responsible for releasing the CFErrorRef.
    ///
    /// The subject is a sequence in the format used by
    /// SecItemCopyMatching. The content returned is a DER-encoded
    /// X.509 distinguished name. For a display version of the subject,
    /// call SecCertificateCopyValues. The caller must CFRelease
    /// the value returned.
    ///
    /// # Safety
    ///
    /// `error` must be a valid pointer or null.
    #[doc(alias = "SecCertificateCopyNormalizedSubjectContent")]
    #[cfg(feature = "SecBase")]
    #[deprecated = "SecCertificateCopyNormalizedSubjectContent is deprecated. Use SecCertificateCopyNormalizedSubjectSequence instead."]
    #[inline]
    pub unsafe fn normalized_subject_content(
        &self,
        error: *mut *mut CFError,
    ) -> Option<CFRetained<CFData>> {
        extern "C-unwind" {
            fn SecCertificateCopyNormalizedSubjectContent(
                certificate: &SecCertificate,
                error: *mut *mut CFError,
            ) -> Option<NonNull<CFData>>;
        }
        let ret = unsafe { SecCertificateCopyNormalizedSubjectContent(self, error) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::with_data`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCreateWithData(
    allocator: Option<&CFAllocator>,
    data: &CFData,
) -> Option<CFRetained<SecCertificate>> {
    extern "C-unwind" {
        fn SecCertificateCreateWithData(
            allocator: Option<&CFAllocator>,
            data: &CFData,
        ) -> Option<NonNull<SecCertificate>>;
    }
    let ret = unsafe { SecCertificateCreateWithData(allocator, data) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::data`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyData(
    certificate: &SecCertificate,
) -> CFRetained<CFData> {
    extern "C-unwind" {
        fn SecCertificateCopyData(certificate: &SecCertificate) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopyData(certificate) };
    let ret = ret.expect("function was marked as returning non-null, but actually returned NULL");
    unsafe { CFRetained::from_raw(ret) }
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::subject_summary`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopySubjectSummary(
    certificate: &SecCertificate,
) -> Option<CFRetained<CFString>> {
    extern "C-unwind" {
        fn SecCertificateCopySubjectSummary(
            certificate: &SecCertificate,
        ) -> Option<NonNull<CFString>>;
    }
    let ret = unsafe { SecCertificateCopySubjectSummary(certificate) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

extern "C-unwind" {
    #[cfg(feature = "SecBase")]
    #[deprecated = "renamed to `SecCertificate::copy_common_name`"]
    pub fn SecCertificateCopyCommonName(
        certificate: &SecCertificate,
        common_name: NonNull<*const CFString>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(feature = "SecBase")]
    #[deprecated = "renamed to `SecCertificate::copy_email_addresses`"]
    pub fn SecCertificateCopyEmailAddresses(
        certificate: &SecCertificate,
        email_addresses: NonNull<*const CFArray>,
    ) -> OSStatus;
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::normalized_issuer_sequence`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyNormalizedIssuerSequence(
    certificate: &SecCertificate,
) -> Option<CFRetained<CFData>> {
    extern "C-unwind" {
        fn SecCertificateCopyNormalizedIssuerSequence(
            certificate: &SecCertificate,
        ) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopyNormalizedIssuerSequence(certificate) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::normalized_subject_sequence`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyNormalizedSubjectSequence(
    certificate: &SecCertificate,
) -> Option<CFRetained<CFData>> {
    extern "C-unwind" {
        fn SecCertificateCopyNormalizedSubjectSequence(
            certificate: &SecCertificate,
        ) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopyNormalizedSubjectSequence(certificate) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::key`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyKey(
    certificate: &SecCertificate,
) -> Option<CFRetained<SecKey>> {
    extern "C-unwind" {
        fn SecCertificateCopyKey(certificate: &SecCertificate) -> Option<NonNull<SecKey>>;
    }
    let ret = unsafe { SecCertificateCopyKey(certificate) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

extern "C-unwind" {
    #[cfg(feature = "SecBase")]
    #[deprecated = "renamed to `SecCertificate::copy_public_key`"]
    #[cfg_attr(
        target_os = "macos",
        link_name = "SecCertificateCopyPublicKey$LEGACYMAC"
    )]
    pub fn SecCertificateCopyPublicKey(
        certificate: &SecCertificate,
        key: NonNull<*mut SecKey>,
    ) -> OSStatus;
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::serial_number_data`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopySerialNumberData(
    certificate: &SecCertificate,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFData>> {
    extern "C-unwind" {
        fn SecCertificateCopySerialNumberData(
            certificate: &SecCertificate,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopySerialNumberData(certificate, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::not_valid_before_date`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyNotValidBeforeDate(
    certificate: &SecCertificate,
) -> Option<CFRetained<CFDate>> {
    extern "C-unwind" {
        fn SecCertificateCopyNotValidBeforeDate(
            certificate: &SecCertificate,
        ) -> Option<NonNull<CFDate>>;
    }
    let ret = unsafe { SecCertificateCopyNotValidBeforeDate(certificate) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::not_valid_after_date`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyNotValidAfterDate(
    certificate: &SecCertificate,
) -> Option<CFRetained<CFDate>> {
    extern "C-unwind" {
        fn SecCertificateCopyNotValidAfterDate(
            certificate: &SecCertificate,
        ) -> Option<NonNull<CFDate>>;
    }
    let ret = unsafe { SecCertificateCopyNotValidAfterDate(certificate) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::serial_number`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopySerialNumber(
    certificate: &SecCertificate,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFData>> {
    extern "C-unwind" {
        #[cfg_attr(
            target_os = "macos",
            link_name = "SecCertificateCopySerialNumber$LEGACYMAC"
        )]
        fn SecCertificateCopySerialNumber(
            certificate: &SecCertificate,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopySerialNumber(certificate, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

extern "C-unwind" {
    #[cfg(all(
        feature = "SecAsn1Types",
        feature = "SecBase",
        feature = "cssmconfig",
        feature = "cssmtype"
    ))]
    #[deprecated = "renamed to `SecCertificate::create_from_data`"]
    pub fn SecCertificateCreateFromData(
        data: NonNull<SecAsn1Item>,
        r#type: CSSM_CERT_TYPE,
        encoding: CSSM_CERT_ENCODING,
        certificate: NonNull<*mut SecCertificate>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(feature = "SecBase")]
    #[deprecated = "renamed to `SecCertificate::add_to_keychain`"]
    pub fn SecCertificateAddToKeychain(
        certificate: &SecCertificate,
        keychain: Option<&SecKeychain>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(feature = "SecAsn1Types", feature = "SecBase", feature = "cssmtype"))]
    #[deprecated = "renamed to `SecCertificate::get_data`"]
    pub fn SecCertificateGetData(certificate: &SecCertificate, data: CSSM_DATA_PTR) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(feature = "SecBase", feature = "cssmconfig", feature = "cssmtype"))]
    #[deprecated = "renamed to `SecCertificate::type`"]
    pub fn SecCertificateGetType(
        certificate: &SecCertificate,
        certificate_type: NonNull<CSSM_CERT_TYPE>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(
        feature = "SecAsn1Types",
        feature = "SecBase",
        feature = "cssmconfig",
        feature = "x509defs"
    ))]
    #[deprecated = "renamed to `SecCertificate::subject`"]
    pub fn SecCertificateGetSubject(
        certificate: &SecCertificate,
        subject: NonNull<*const CSSM_X509_NAME>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(
        feature = "SecAsn1Types",
        feature = "SecBase",
        feature = "cssmconfig",
        feature = "x509defs"
    ))]
    #[deprecated = "renamed to `SecCertificate::issuer`"]
    pub fn SecCertificateGetIssuer(
        certificate: &SecCertificate,
        issuer: NonNull<*const CSSM_X509_NAME>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(feature = "SecBase", feature = "cssmconfig", feature = "cssmtype"))]
    #[deprecated = "renamed to `SecCertificate::cl_handle`"]
    pub fn SecCertificateGetCLHandle(
        certificate: &SecCertificate,
        cl_handle: NonNull<CSSM_CL_HANDLE>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(feature = "SecAsn1Types", feature = "SecBase"))]
    #[deprecated = "renamed to `SecCertificate::algorithm_id`"]
    pub fn SecCertificateGetAlgorithmID(
        certificate: &SecCertificate,
        algid: NonNull<*const SecAsn1AlgId>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(all(feature = "SecBase", feature = "cssmconfig"))]
    #[deprecated = "renamed to `SecCertificate::copy_preference`"]
    pub fn SecCertificateCopyPreference(
        name: &CFString,
        key_usage: uint32,
        certificate: NonNull<*mut SecCertificate>,
    ) -> OSStatus;
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::preferred`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyPreferred(
    name: &CFString,
    key_usage: Option<&CFArray>,
) -> Option<CFRetained<SecCertificate>> {
    extern "C-unwind" {
        fn SecCertificateCopyPreferred(
            name: &CFString,
            key_usage: Option<&CFArray>,
        ) -> Option<NonNull<SecCertificate>>;
    }
    let ret = unsafe { SecCertificateCopyPreferred(name, key_usage) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

extern "C-unwind" {
    #[cfg(all(feature = "SecBase", feature = "cssmconfig"))]
    #[deprecated = "renamed to `SecCertificate::set_preference`"]
    pub fn SecCertificateSetPreference(
        certificate: &SecCertificate,
        name: &CFString,
        key_usage: uint32,
        date: Option<&CFDate>,
    ) -> OSStatus;
}

extern "C-unwind" {
    #[cfg(feature = "SecBase")]
    #[deprecated = "renamed to `SecCertificate::set_preferred`"]
    pub fn SecCertificateSetPreferred(
        certificate: Option<&SecCertificate>,
        name: &CFString,
        key_usage: Option<&CFArray>,
    ) -> OSStatus;
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::values`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyValues(
    certificate: &SecCertificate,
    keys: Option<&CFArray>,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
    extern "C-unwind" {
        fn SecCertificateCopyValues(
            certificate: &SecCertificate,
            keys: Option<&CFArray>,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFDictionary>>;
    }
    let ret = unsafe { SecCertificateCopyValues(certificate, keys, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::long_description`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyLongDescription(
    alloc: Option<&CFAllocator>,
    certificate: &SecCertificate,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFString>> {
    extern "C-unwind" {
        fn SecCertificateCopyLongDescription(
            alloc: Option<&CFAllocator>,
            certificate: &SecCertificate,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFString>>;
    }
    let ret = unsafe { SecCertificateCopyLongDescription(alloc, certificate, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::short_description`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyShortDescription(
    alloc: Option<&CFAllocator>,
    certificate: &SecCertificate,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFString>> {
    extern "C-unwind" {
        fn SecCertificateCopyShortDescription(
            alloc: Option<&CFAllocator>,
            certificate: &SecCertificate,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFString>>;
    }
    let ret = unsafe { SecCertificateCopyShortDescription(alloc, certificate, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::normalized_issuer_content`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyNormalizedIssuerContent(
    certificate: &SecCertificate,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFData>> {
    extern "C-unwind" {
        fn SecCertificateCopyNormalizedIssuerContent(
            certificate: &SecCertificate,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopyNormalizedIssuerContent(certificate, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "SecBase")]
#[deprecated = "renamed to `SecCertificate::normalized_subject_content`"]
#[inline]
pub unsafe extern "C-unwind" fn SecCertificateCopyNormalizedSubjectContent(
    certificate: &SecCertificate,
    error: *mut *mut CFError,
) -> Option<CFRetained<CFData>> {
    extern "C-unwind" {
        fn SecCertificateCopyNormalizedSubjectContent(
            certificate: &SecCertificate,
            error: *mut *mut CFError,
        ) -> Option<NonNull<CFData>>;
    }
    let ret = unsafe { SecCertificateCopyNormalizedSubjectContent(certificate, error) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}