summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Cryptography/X509Certificates/safex509handles.cs
blob: 36235b3ae56fc933d056ba0c50ca0c062f157327 (plain)
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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace System.Security.Cryptography.X509Certificates {
    using System.Runtime.InteropServices;
    using System.Runtime.CompilerServices;
    using System.Runtime.ConstrainedExecution;
    using System.Runtime.Versioning;
    using Microsoft.Win32.SafeHandles;

    // Since we need sometimes to delete the key container associated with a cert
    // context, the handle used in this class is actually a pointer
    // to a CERT_CTX unmanaged structure defined in COMX509Certificate.h

    [System.Security.SecurityCritical]  // auto-generated
    internal sealed class SafeCertContextHandle : SafeHandleZeroOrMinusOneIsInvalid {
        private SafeCertContextHandle() : base (true) {}

        // 0 is an Invalid Handle
        internal SafeCertContextHandle(IntPtr handle) : base (true) {
            SetHandle(handle);
        }

        internal static SafeCertContextHandle InvalidHandle {
            get { return new SafeCertContextHandle(IntPtr.Zero); }
        }

        internal IntPtr pCertContext {
            get {
                if (handle == IntPtr.Zero)
                    return IntPtr.Zero;

                return Marshal.ReadIntPtr(handle);
            }
        }

        // This method handles the case where pCert == NULL
        [MethodImplAttribute(MethodImplOptions.InternalCall)]
        [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
        private static extern void _FreePCertContext(IntPtr pCert);

        [System.Security.SecurityCritical]
        override protected bool ReleaseHandle()
        {
            _FreePCertContext(handle);
            return true;
        }
    }

    [System.Security.SecurityCritical]  // auto-generated
    internal sealed class SafeCertStoreHandle : SafeHandleZeroOrMinusOneIsInvalid {
        private SafeCertStoreHandle() : base (true) {}

        // 0 is an Invalid Handle
        internal SafeCertStoreHandle(IntPtr handle) : base (true) {
            SetHandle(handle);
        }

        internal static SafeCertStoreHandle InvalidHandle {
            get { return new SafeCertStoreHandle(IntPtr.Zero); }
        }

        // This method handles the case where hCertStore == NULL
        [MethodImplAttribute(MethodImplOptions.InternalCall)]
        [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
        private static extern void _FreeCertStoreContext(IntPtr hCertStore);

        [System.Security.SecurityCritical]
        override protected bool ReleaseHandle()
        {
            _FreeCertStoreContext(handle);
            return true;
        }
    }
}