aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Iis/ca/scacert.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Iis/ca/scacert.h')
-rw-r--r--src/ext/Iis/ca/scacert.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ext/Iis/ca/scacert.h b/src/ext/Iis/ca/scacert.h
new file mode 100644
index 00000000..39b00d3d
--- /dev/null
+++ b/src/ext/Iis/ca/scacert.h
@@ -0,0 +1,23 @@
1#pragma once
2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
3
4
5#define CB_CERTIFICATE_HASH 20
6
7// Certificate.Attribute
8enum SCA_CERT_ATTRIBUTES
9{
10 SCA_CERT_ATTRIBUTE_DEFAULT = 0,
11 SCA_CERT_ATTRIBUTE_REQUEST = 1,
12 SCA_CERT_ATTRIBUTE_BINARYDATA = 2,
13 SCA_CERT_ATTRIBUTE_OVERWRITE = 4,
14 SCA_CERT_ATTRIBUTE_VITAL = 8,
15};
16
17
18// Certificate.StoreLocation
19enum SCA_CERTSYSTEMSTORE
20{
21 SCA_CERTSYSTEMSTORE_CURRENTUSER = 1,
22 SCA_CERTSYSTEMSTORE_LOCALMACHINE = 2,
23};