| 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 |
| 8 | enum 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 |
| 19 | enum SCA_CERTSYSTEMSTORE |
| 20 | { |
| 21 | SCA_CERTSYSTEMSTORE_CURRENTUSER = 1, |
| 22 | SCA_CERTSYSTEMSTORE_LOCALMACHINE = 2, |
| 23 | }; |