forked from Sleepw4lker/TameMyCerts.REST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTameMyCerts.REST.xml
1083 lines (1083 loc) · 56.3 KB
/
TameMyCerts.REST.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>TameMyCerts.REST</name>
</assembly>
<members>
<member name="T:TameMyCerts.REST.ActiveDirectory">
<summary>
A class holding methods that help acquiring PKI related information from Active Directory.
</summary>
</member>
<member name="M:TameMyCerts.REST.ActiveDirectory.GetEnrollmentServiceCollection(System.String)">
<summary>
Returns a SearchResultCollection holding pKIEnrollmentService objects found in the directory.
</summary>
<param name="cn">Common name of a specific ca.</param>
<returns></returns>
</member>
<member name="T:TameMyCerts.REST.CCertRequestExtensions">
<summary>
A class that extends the functionality if ICertRequest for the needs of our API.
</summary>
</member>
<member name="M:TameMyCerts.REST.CCertRequestExtensions.RetrievePending(CERTCLILib.CCertRequest,System.String,System.Int32,System.Boolean)">
<summary>
Retrieves a certificate from a certification authority.
</summary>
<param name="certRequestInterface"></param>
<param name="configString">The configuration string of the certification authority.</param>
<param name="requestId"></param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.CCertRequestExtensions.Submit(CERTCLILib.CCertRequest,System.String,System.String,System.Collections.Generic.List{System.String},System.Int32,System.Boolean)">
<summary>
Submits a certificate request to a certification authority.
</summary>
<param name="certRequestInterface"></param>
<param name="configString">The configuration string of the certification authority.</param>
<param name="rawCertificateRequest">The certificate request as BASE64 without headers.</param>
<param name="requestAttributes">
An optional list of request attributes that shall be passed to the certificate
authority.
</param>
<param name="submissionFlags">Submission flags.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.CCertRequestExtensions.GetCrlDpCollection(CERTCLILib.CCertRequest,System.String,System.Boolean)">
<summary>
Retrieves certificate revocation list distribution point information from a certification authority.
</summary>
<param name="certRequestInterface"></param>
<param name="configString">The configuration string of the certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.CCertRequestExtensions.GetAiaCollection(CERTCLILib.CCertRequest,System.String,System.Boolean)">
<summary>
Retrieves authority information access information from a certification authority.
</summary>
<param name="certRequestInterface"></param>
<param name="configString">The configuration string of the certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.CCertRequestExtensions.GetCaCertificate(CERTCLILib.CCertRequest,System.String,System.Boolean,System.Boolean)">
<summary>
Retrieves a CA or CA exchange certificate from a certification authority.
</summary>
<param name="certRequestInterface"></param>
<param name="configString">The configuration string of the certification authority.</param>
<param name="caExchangeCertificate">Returns the CA exchange certificate instead of the CA certificate.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="T:TameMyCerts.REST.CertificateRequestIntegrityChecks">
<summary>
A class that helps identifying the type of the certificate request and harmonizing it for further processing.
</summary>
</member>
<member name="M:TameMyCerts.REST.CertificateRequestIntegrityChecks.VerifyCertificateRequest(System.String,System.Int32,System.String@)">
<summary>
Verifies if the certificate request can be parsed as defined by the requestType.
</summary>
<param name="certificateRequest">The certificate request in BASE64 format, with or without headers.</param>
<param name="requestType">The request type specifies how the certificate request is to be interpreted.</param>
<param name="rawCertificateRequest">
Harmonized certificate request, returned as BASE64 without header, regardless of
the given input.
</param>
</member>
<member name="M:TameMyCerts.REST.CertificateRequestIntegrityChecks.DetectRequestType(System.String,System.String@)">
<summary>
Identifies the type of the given certificate request.
</summary>
<param name="certificateRequest">
The input certificate request as BASE64 encoded DER.
</param>
<param name="rawCertificateRequest">The output certificate request as BASE64 encoded DER.</param>
<returns>The request type to be used with ICertRequest::Submit.</returns>
</member>
<member name="T:TameMyCerts.REST.Controllers.CertificatesController">
<summary>
An API controller for all operations related to PKIX certificates.
</summary>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificatesController.GetCertificateByRequestId(System.String,System.Int32,System.Boolean)">
<summary>
Retrieves an issued certificate from a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="requestId">The request identifier of the certificate to retrieve.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificatesController.SubmitCertificateRequest(System.String,TameMyCerts.REST.Models.CertificateRequest,System.String,System.Boolean)">
<summary>
Submits a certificate signing request to a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="certificateRequest">The data structure containing the certificate request and optional settings.</param>
<param name="certificateTemplate">The certificate template the certificate request shall be assigned to.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="T:TameMyCerts.REST.Controllers.CertificateTemplatesController">
<summary>
An API controller for all operations related to certificate templates.
</summary>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificateTemplatesController.GetCertificateTemplateCollection">
<summary>
Retrieves a collection of all certificate templates in the underlying Active Directory environment.
</summary>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificateTemplatesController.GetCertificateTemplate(System.String)">
<summary>
Retrieves details for a certificate template.
</summary>
<param name="templateName">The name of the target certificate template.</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificateTemplatesController.GetCertificateTemplateIssuers(System.String,System.Boolean)">
<summary>
Retrieves a collection of certification authorities that issue certificates for a given certificate template.
</summary>
<param name="templateName">The name of the target certificate template.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="T:TameMyCerts.REST.Controllers.CertificationAuthoritiesController">
<summary>
An API controller for all operations related to a certification authority.
</summary>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificationAuthoritiesController.GetAllCas(System.Boolean)">
<summary>
Retrieves a collection of all available certification authorities.
</summary>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificationAuthoritiesController.GetCaByName(System.String,System.Boolean)">
<summary>
Retrieves details for a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificationAuthoritiesController.GetCaCertificate(System.String,System.Boolean)">
<summary>
Retrieves the current certification authority certificate for a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificationAuthoritiesController.GetCaExchangeCertificate(System.String,System.Boolean)">
<summary>
Retrieves the current certification authority exchange certificate for a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificationAuthoritiesController.GetCrlDp(System.String,System.Boolean)">
<summary>
Retrieves a collection of certificate revocation list distribution points for a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Controllers.CertificationAuthoritiesController.GetAia(System.String,System.Boolean)">
<summary>
Retrieves a collection of authority information access distribution points for a certification authority.
</summary>
<param name="caName">The common name of the target certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="T:TameMyCerts.REST.LocalizedStrings">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_CA_DENIED">
<summary>
Looks up a localized string similar to You do not have permission to request certificates from {0}..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_INVALID_CSR">
<summary>
Looks up a localized string similar to Unable to parse the given certificate request..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_INVALID_REQUEST">
<summary>
Looks up a localized string similar to The submitted request is malformed and cannot be processed..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_MISSING_CA">
<summary>
Looks up a localized string similar to The certification authority {0} was not found..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_MISSING_PARAMETER">
<summary>
Looks up a localized string similar to The {0} parameter is missing or invalid..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_MISSING_TEMPLATE">
<summary>
Looks up a localized string similar to The certificate template {0} was not found..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_SUBMISSION_FAILED">
<summary>
Looks up a localized string similar to Unable to connect to certification authority because {0}..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.DESC_TEMPLATED_DENIED">
<summary>
Looks up a localized string similar to You do not have permission to enroll for {0}..
</summary>
</member>
<member name="P:TameMyCerts.REST.LocalizedStrings.UNKNOWN">
<summary>
Looks up a localized string similar to unknown.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.AuthorityInformationAccess">
<summary>
A data structure containing authority information access for a certification authority.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.AuthorityInformationAccess.#ctor(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String)">
<summary>
Initiates an AuthorityInformationAccess object.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.AuthorityInformationAccess.Urls">
<summary>
A collection of authority information access urls that are available for the certification authority certificate.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.AuthorityInformationAccess.OcspUrls">
<summary>
A collection of available online certificate status protocol urls.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.AuthorityInformationAccess.Certificate">
<summary>
The PKIX certification authority certificate.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.AuthorityInformationAccessCollection">
<summary>
Contains a list of authority information access distribution points.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.AuthorityInformationAccessCollection.#ctor(System.Collections.Generic.List{TameMyCerts.REST.Models.AuthorityInformationAccess})">
<summary>
Builds the collection out of a given list of authority information access distribution points.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.AuthorityInformationAccessCollection.AuthorityInformationAccess">
<summary>
Contains a list of authority information access distribution points.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.CertificateRequest">
<summary>
A data structure containing a certificate request and a list of optional request attributes.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificateRequest.Request">
<summary>
The PKIX certificate signing request as BASE64 encoded DER. Request type gets detected automatically.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificateRequest.RequestAttributes">
<summary>
Optional request attributes as a collection of strings.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.CertificateRevocationListDistributionPoint">
<summary>
A data structure containing certificate revocation list distribution point information for a certification
authority.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificateRevocationListDistributionPoint.#ctor(System.Collections.Generic.List{System.String},System.String)">
<summary>
Initiates a CertificateRevocationListDistributionPoint object.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificateRevocationListDistributionPoint.Urls">
<summary>
A collection of addresses under which the CRL is distributed by the certification authority.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificateRevocationListDistributionPoint.CertificateRevocationList">
<summary>
The PKIX certificate revocation list.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.CertificateRevocationListDistributionPointCollection">
<summary>
Contains a list of certificate revocation list distribution points.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificateRevocationListDistributionPointCollection.#ctor(System.Collections.Generic.List{TameMyCerts.REST.Models.CertificateRevocationListDistributionPoint})">
<summary>
Builds the collection out of a given list of certificate revocation list distribution points.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificateRevocationListDistributionPointCollection.CertificateRevocationListDistributionPoints">
<summary>
Contains a list of certificate revocation list distribution points.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.CertificateTemplateCollection">
<summary>
A collection of CertificateTemplate Objects.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificateTemplateCollection.#ctor">
<summary>
Builds a CertificateTemplateCollection.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificateTemplateCollection.#ctor(System.Collections.Generic.List{TameMyCerts.NetCore.Common.Models.CertificateTemplate})">
<summary>
Builds a CertificateTemplateCollection.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificateTemplateCollection.CertificateTemplates">
<summary>
A collection of CertificateTemplate Objects.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.CertificationAuthority">
<summary>
A data structure holding information about a certification authority.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificationAuthority.#ctor(System.DirectoryServices.SearchResult,System.Boolean)">
<summary>
Builds the object from a SearchResult containing a pKIEnrollmentService LDAP object.
</summary>
<param name="searchResult">The Active Directory SearchResult to build the object from.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="P:TameMyCerts.REST.Models.CertificationAuthority.Name">
<summary>
The common name of the certification authority.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificationAuthority.ConfigurationString">
<summary>
The configuration string for this certification authority.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificationAuthority.CertificateTemplates">
<summary>
A list of all certificate templates offered by the certification authority.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.CertificationAuthority.Certificate">
<summary>
The current certification authority certificate of the certification authority.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificationAuthority.Create(System.String,System.Boolean)">
<summary>
Builds a CertificationAuthority object out of a given name.
</summary>
<param name="caName">The name of the target certification authority.</param>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="M:TameMyCerts.REST.Models.CertificationAuthority.AllowsForEnrollment(System.Security.Principal.WindowsIdentity,System.Boolean)">
<summary>
Determines whether a given WindowsIdentity may enroll for certificates from this certification authority.
</summary>
<param name="identity">The Windows identity to check for permissions.</param>
<param name="explicitlyPermitted">Return true only if the identity is explicitly mentioned in the acl.</param>
<returns></returns>
</member>
<member name="M:TameMyCerts.REST.Models.CertificationAuthority.Base64EncodedDer">
<remarks>
Pattern:<br/>
<code>.{64}</code><br/>
Explanation:<br/>
<code>
○ Match a character other than '\n' exactly 64 times.<br/>
</code>
</remarks>
</member>
<member name="T:TameMyCerts.REST.Models.CertificationAuthorityCollection">
<summary>
A collection of CertificationAuthority Objects.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.CertificationAuthorityCollection.#ctor(System.Collections.Generic.List{TameMyCerts.REST.Models.CertificationAuthority})">
<summary>
Builds a CertificationAuthorityCollection out of a given list.
</summary>
<param name="certificationAuthorities">The collection of certification authorities.</param>
</member>
<member name="M:TameMyCerts.REST.Models.CertificationAuthorityCollection.#ctor(System.Boolean)">
<summary>
Builds a CertificationAuthorityCollection out of the information available in Active Directory.
</summary>
<param name="textualEncoding">
Causes returned PKIX data to be encoded according to RFC 7468 instead of a plain BASE64 stream.
</param>
</member>
<member name="P:TameMyCerts.REST.Models.CertificationAuthorityCollection.CertificationAuthorities">
<summary>
A collection of CertificationAuthority Objects.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.Status">
<summary>
Additional status information about the outcome of the submission process.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.Status.#ctor(System.Int32)">
<summary>
Additional status information about the outcome of the submission process.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.Status.StatusCode">
<summary>
The result code returned by the certification authority during the submission process.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.Status.Description">
<summary>
The message the certification authority returned alongside with the result code.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.SubmissionResponse">
<summary>
A data structure containing the result of an operation against a certification authority.
</summary>
</member>
<member name="T:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode">
<summary>
The possible disposition values returned by the certification authority.
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.Incomplete">
<summary>
Request did not complete
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.Failed">
<summary>
Request failed
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.Denied">
<summary>
Request denied
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.Issued">
<summary>
Certificate issued
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.IssuedSeparately">
<summary>
Certificate issued separately
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.Pending">
<summary>
Request taken under submission
</summary>
</member>
<member name="F:TameMyCerts.REST.Models.SubmissionResponse.DispositionCode.Revoked">
<summary>
The certificate has been revoked by the certification authority.
</summary>
</member>
<member name="M:TameMyCerts.REST.Models.SubmissionResponse.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.String,System.String)">
<summary>
Builds a SubmissionResponse data structure.
</summary>
<param name="statusCode">The HResult status code.</param>
<param name="requestId">The request identifier, if any.</param>
<param name="dispositionCode">The disposition code returned by the certification authority, if any.</param>
<param name="binaryResponse">The full response of the certification authority.</param>
<param name="certificate">The certificate, if any.</param>
<param name="certificateChain">The certificate, if any, including the certificate chain.</param>
</member>
<member name="P:TameMyCerts.REST.Models.SubmissionResponse.RequestId">
<summary>
The request identifier of the issued certificate, or the pending request.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.SubmissionResponse.Disposition">
<summary>
The disposition status of the submission or retrieval request.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.SubmissionResponse.Status">
<summary>
Additional status information about the outcome of the submission process.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.SubmissionResponse.Certificate">
<summary>
The issued PKIX certificate, if issued by the certification authority, as BASE64-encoded DER.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.SubmissionResponse.CertificateChain">
<summary>
The issued PKIX certificate, if issued by the certification authority, as a PKCS#7 certificate chain in
BASE64-encoded DER.
</summary>
</member>
<member name="P:TameMyCerts.REST.Models.SubmissionResponse.BinaryResponse">
<summary>
The full response of the certification authority in signed CMC format.
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.CaType">
<summary>
Certification authority types from CertSrv.h
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.CertCli">
<summary>
Constants from CertCli.h
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.CertSrv">
<summary>
Constants from CertSrv.h
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.GeneralFlag">
<summary>
General flags from CertCa.h
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_FLAG_MACHINE_TYPE">
<summary>
This is a machine cert type
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_FLAG_IS_CA">
<summary>
This is a CA cert type
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_FLAG_IS_CROSS_CA">
<summary>
This is a cross CA cert type
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_FLAG_DONOTPERSISTINDB">
<summary>
Tells the CA that this certificate should not be persisted in // the database if the CA is configured to do so.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_FLAG_IS_DEFAULT">
<summary>
The type is a default cert type (cannot be set). This flag will be set on all V1 templates. The templates can not
be edited or deleted.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_FLAG_IS_MODIFIED">
<summary>
The type has been modified, if it is default (cannot be set)
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.GeneralFlag.CT_MASK_SETTABLE_FLAGS">
<summary>
settable flags for general flags
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType">
<summary>
Supported public key algorithm types.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.RSA">
<summary>
The RSA algorithm.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.ECDSA_P256">
<summary>
The elliptic curve digital signature algorithm using the nistp256 curve.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.ECDSA_P384">
<summary>
The elliptic curve digital signature algorithm using the nistp384 curve.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.ECDSA_P521">
<summary>
The elliptic curve digital signature algorithm using the nistp521 curve.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.ECDH_P256">
<summary>
The elliptic curve diffie hellman algorithm using the nistp256 curve.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.ECDH_P384">
<summary>
The elliptic curve diffie hellman algorithm using the nistp384 curve.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.ECDH_P521">
<summary>
The elliptic curve diffie hellman algorithm using the nistp521 curve.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.KeyAlgorithmType.DSA">
<summary>
The digital signature algorithm.
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag">
<summary>
Certificate Subject Name Flags from CertCa.h
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_ENROLLEE_SUPPLIES_SUBJECT">
<summary>
The enrolling application must supply the subject name.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_ENROLLEE_SUPPLIES_SUBJECT_ALT_NAME">
<summary>
The enrolling application must supply the subjectAltName in request
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_REQUIRE_DIRECTORY_PATH">
<summary>
Subject name should be full DN
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_REQUIRE_COMMON_NAME">
<summary>
Subject name should be the common name
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_REQUIRE_EMAIL">
<summary>
Subject name includes the e-mail name
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_REQUIRE_DNS_AS_CN">
<summary>
Subject name includes the DNS name as the common name
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_ALT_REQUIRE_DNS">
<summary>
Subject alt name includes DNS name
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_ALT_REQUIRE_EMAIL">
<summary>
Subject alt name includes email name
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_ALT_REQUIRE_UPN">
<summary>
Subject alt name requires UPN
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_ALT_REQUIRE_DIRECTORY_GUID">
<summary>
Subject alt name requires directory GUID
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_ALT_REQUIRE_SPN">
<summary>
Subject alt name requires SPN
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_SUBJECT_ALT_REQUIRE_DOMAIN_DNS">
<summary>
Subject alt name requires Domain DNS name
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.SubjectNameFlag.CT_FLAG_OLD_CERT_SUPPLIES_SUBJECT_AND_ALT_NAME">
<summary>
Subject name should be copied from the renewing certificate
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.WinCrypt">
<summary>
Constants from WinCrypt.h
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Enums.WinError">
<summary>
Constants from WinError.h
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.ERROR_SUCCESS">
<summary>
The operation completed successfully.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.ERROR_INVALID_TIME">
<summary>
The specified time is invalid.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.NTE_FAIL">
<summary>
An internal error occurred.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.CERTSRV_E_TEMPLATE_DENIED">
<summary>
The permissions on the certificate template do not allow the current user to enroll for this type of certificate.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.CERTSRV_E_UNSUPPORTED_CERT_TYPE">
<summary>
The requested certificate template is not supported by this CA.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.CERTSRV_E_KEY_LENGTH">
<summary>
The public key does not meet the minimum size required by the specified certificate template.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.CERT_E_WRONG_USAGE">
<summary>
The certificate is not valid for the requested usage.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Enums.WinError.CERT_E_INVALID_NAME">
<summary>
The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded.
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Models.CertificateTemplate">
<summary>
Information about a certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.Name">
<summary>
The common name of the certificate template. Use this when submitting certificate requests.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.DisplayName">
<summary>
The display name of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.ObjectIdentifier">
<summary>
The object identifier of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.EnrolleeSuppliesSubject">
<summary>
Specifies if the enrollee may provide subject information with the certificate request.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.KeyAlgorithm">
<summary>
Specifies the key algorithm the certificate will be signed with.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.MinimumKeyLength">
<summary>
The minimum accepted key length of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.ValidityPeriod">
<summary>
The validity period of issued certificates for this certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.RenewalOverlap">
<summary>
The desired renewal overlap period for this certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.KeyStorageProviders">
<summary>
Contains a list of the preferred key storage providers for this certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.MajorVersion">
<summary>
The major version of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.MinorVersion">
<summary>
The minor version of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.SchemaVersion">
<summary>
The Active Directory schema version of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.KeyUsageExtension">
<summary>
Information about the key usage extension of the certificate template.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.CertificateTemplate.ExtendedKeyUsageExtension">
<summary>
Information about the extended key usage extension of the certificate template.
</summary>
</member>
<member name="M:TameMyCerts.NetCore.Common.Models.CertificateTemplate.Create(System.String)">
<summary>
Builds a new CertificateTemplate object.
</summary>
<param name="templateName">The name of the certificate template from which the object is built.</param>
</member>
<member name="M:TameMyCerts.NetCore.Common.Models.CertificateTemplate.Create(System.Security.Cryptography.Oid)">
<summary>
Builds a new CertificateTemplate object.
</summary>
<param name="templateOid">The object identifier ame of the certificate template from which the object is built.</param>
</member>
<member name="M:TameMyCerts.NetCore.Common.Models.CertificateTemplate.AllowsForEnrollment(System.Security.Principal.WindowsIdentity,System.Boolean)">
<summary>
Determines whether a given WindowsIdentity may enroll for this certificate template.
</summary>
<param name="identity">The Windows identity to check for permissions.</param>
<param name="explicitlyPermitted">Return true only if the identity is explicitly mentioned in the acl.</param>
<returns></returns>
</member>
<member name="T:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsage">
<summary>
Information about an extended key usage.
</summary>
</member>
<member name="M:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsage.#ctor(System.String)">
<summary>
Builds the ExtendedKeyUsage out of a given object identifier.
</summary>
<param name="objectIdentifier">The object identifier of the extended key usage.</param>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsage.ObjectIdentifier">
<summary>
The object identifier of the extended key usage.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsage.FriendlyName">
<summary>
The friendly name of the extended key usage.
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsageExtension">
<summary>
Information about the extended key usage extension of the certificate template.
</summary>
</member>
<member name="M:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsageExtension.#ctor(System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
<summary>
Builds an EnhancedKeyUsageExtension out of a given list of object identifiers.
</summary>
<param name="extendedKeyUsages">The list of object identifiers to build the object from.</param>
<param name="critical">Indicates whether the extension is critical or not.</param>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsageExtension.Critical">
<summary>
Indicates whether the extension is critical or not.
</summary>
</member>
<member name="P:TameMyCerts.NetCore.Common.Models.ExtendedKeyUsageExtension.ExtendedKeyUsages">
<summary>
A list of extended key usages of the certificate template.
</summary>
</member>
<member name="T:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType">
<summary>
Key Usage types according to RFC 5280.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.digitalSignature">
<summary>
The digitalSignature bit is asserted when the subject public key is used for verifying digital signatures, other
than signatures on certificates , such as those used in an entity authentication service, a data origin
authentication service, and/or an integrity service.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.nonRepudiation">
<summary>
The nonRepudiation bit is asserted when the subject public key is used to verify digital signatures, other than
signatures on certificates , used to provide a non-repudiation service that protects against the signing entity
falsely denying some action. In the case of later conflict, a reliable third party may determine the authenticity
of the signed data.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.keyEncipherment">
<summary>
The keyEncipherment bit is asserted when the subject public key is used for enciphering private or secret keys,
i.e., for key transport. For example, this bit shall be set when an RSA public key is to be used for encrypting a
symmetric content-decryption key or an asymmetric private key.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.dataEncipherment">
<summary>
The dataEncipherment bit is asserted when the subject public key is used for directly enciphering raw user data
without the use of an intermediate symmetric cipher.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.keyAgreement">
<summary>
The keyAgreement bit is asserted when the subject public key is used for key agreement. For example, when a
Diffie-Hellman key is to be used for key management, then this bit is set.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.keyCertSign">
<summary>
The keyCertSign bit is asserted when the subject public key is used for verifying signatures on public key
certificates.
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.cRLSign">
<summary>
The cRLSign bit is asserted when the subject public key is used for verifying signatures on certificate revocation
lists (e.g., CRLs, delta CRLs, or ARLs).
</summary>
</member>
<member name="F:TameMyCerts.NetCore.Common.Models.KeyUsage.KeyUsageType.encipherOnly">
<summary>
The meaning of the encipherOnly bit is undefined in the absence of the keyAgreement bit. When the encipherOnly bit
is asserted and the keyAgreement bit is also set, the subject public key may be used only for enciphering data
while performing key agreement.
</summary>
</member>
<member name="M:TameMyCerts.NetCore.Common.Models.KeyUsage.#ctor(System.Int32)">
<summary>
Builds a KeyUsage out of the given integer value.