aboutsummaryrefslogtreecommitdiff
path: root/src/ca/scacert.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ca/scacert.h')
-rw-r--r--src/ca/scacert.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ca/scacert.h b/src/ca/scacert.h
new file mode 100644
index 00000000..baa6fb8e
--- /dev/null
+++ b/src/ca/scacert.h
@@ -0,0 +1,22 @@
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};
15
16
17// Certificate.StoreLocation
18enum SCA_CERTSYSTEMSTORE
19{
20 SCA_CERTSYSTEMSTORE_CURRENTUSER = 1,
21 SCA_CERTSYSTEMSTORE_LOCALMACHINE = 2,
22};