-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.AspNetCore.Cryptography.Internal.xml
186 lines (186 loc) · 9.03 KB
/
Microsoft.AspNetCore.Cryptography.Internal.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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.AspNetCore.Cryptography.Internal</name>
</assembly>
<members>
<member name="T:Microsoft.AspNetCore.Cryptography.Cng.BCryptUtil">
<summary>
Wraps utility BCRYPT APIs that don't work directly with handles.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.Cng.BCryptUtil.GenRandom(System.Byte*,System.UInt32)">
<summary>
Fills a buffer with cryptographically secure random data.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Cryptography.Cng.CachedAlgorithmHandles">
<summary>
Provides cached CNG algorithm provider instances, as calling BCryptOpenAlgorithmProvider is expensive.
Callers should use caution never to dispose of the algorithm provider instances returned by this type.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Cryptography.Internal.Resources.BCryptAlgorithmHandle_ProviderNotFound">
<summary>
A provider could not be found for algorithm '{0}'.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.Internal.Resources.FormatBCryptAlgorithmHandle_ProviderNotFound(System.Object)">
<summary>
A provider could not be found for algorithm '{0}'.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Cryptography.Internal.Resources.BCRYPT_KEY_LENGTHS_STRUCT_InvalidKeyLength">
<summary>
The key length {0} is invalid. Valid key lengths are {1} to {2} bits (step size {3}).
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.Internal.Resources.FormatBCRYPT_KEY_LENGTHS_STRUCT_InvalidKeyLength(System.Object,System.Object,System.Object,System.Object)">
<summary>
The key length {0} is invalid. Valid key lengths are {1} to {2} bits (step size {3}).
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Cryptography.Internal.Resources.Platform_Windows7Required">
<summary>
This operation requires Windows 7 / Windows Server 2008 R2 or later.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.Internal.Resources.FormatPlatform_Windows7Required">
<summary>
This operation requires Windows 7 / Windows Server 2008 R2 or later.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Cryptography.Internal.Resources.Platform_Windows8Required">
<summary>
This operation requires Windows 8 / Windows Server 2012 or later.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.Internal.Resources.FormatPlatform_Windows8Required">
<summary>
This operation requires Windows 8 / Windows Server 2012 or later.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle">
<summary>
Represents a handle to a BCrypt algorithm provider from which keys and hashes can be created.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.CreateHash">
<summary>
Creates an unkeyed hash handle from this hash algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.CreateHmac(System.Byte*,System.UInt32)">
<summary>
Creates an HMAC hash handle from this hash algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.GenerateSymmetricKey(System.Byte*,System.UInt32)">
<summary>
Imports a key into a symmetric encryption or KDF algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.GetAlgorithmName">
<summary>
Gets the name of this BCrypt algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.GetCipherBlockLength">
<summary>
Gets the cipher block length (in bytes) of this block cipher algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.GetHashBlockLength">
<summary>
Gets the hash block length (in bytes) of this hash algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.GetSupportedKeyLengths">
<summary>
Gets the key lengths (in bits) supported by this algorithm.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptAlgorithmHandle.GetHashDigestLength">
<summary>
Gets the digest length (in bytes) of this hash algorithm provider.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptHashHandle.DuplicateHash">
<summary>
Duplicates this hash handle, including any existing hashed state.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.BCryptHashHandle.HashData(System.Byte*,System.UInt32,System.Byte*,System.UInt32)">
<summary>
Calculates the cryptographic hash over a set of input data.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Cryptography.SafeHandles.LocalAllocHandle">
<summary>
Represents a handle returned by LocalAlloc.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Cryptography.SafeHandles.SafeLibraryHandle">
<summary>
Represents a handle to a Windows module (DLL).
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.SafeLibraryHandle.DoesProcExist(System.String)">
<summary>
Returns a value stating whether the library exports a given proc.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.SafeLibraryHandle.ForbidUnload">
<summary>
Forbids this library from being unloaded. The library will remain loaded until process termination,
regardless of how many times FreeLibrary is called.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.SafeLibraryHandle.FormatMessage(System.Int32)">
<summary>
Formats a message string using the resource table in the specified library.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.SafeLibraryHandle.GetProcAddress``1(System.String,System.Boolean)">
<summary>
Gets a delegate pointing to a given export from this library.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.SafeLibraryHandle.Open(System.String)">
<summary>
Opens a library. If 'filename' is not a fully-qualified path, the default search path is used.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Cryptography.SafeHandles.SecureLocalAllocHandle">
<summary>
Represents a handle returned by LocalAlloc.
The memory will be zeroed out before it's freed.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.SafeHandles.SecureLocalAllocHandle.Allocate(System.IntPtr)">
<summary>
Allocates some amount of memory using LocalAlloc.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.UnsafeBufferUtil.SecureZeroMemory(System.Byte*,System.Int32)">
<summary>
Securely clears a memory buffer.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.UnsafeBufferUtil.SecureZeroMemory(System.Byte*,System.UInt32)">
<summary>
Securely clears a memory buffer.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.UnsafeBufferUtil.SecureZeroMemory(System.Byte*,System.UInt64)">
<summary>
Securely clears a memory buffer.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Cryptography.UnsafeBufferUtil.SecureZeroMemory(System.Byte*,System.IntPtr)">
<summary>
Securely clears a memory buffer.
</summary>
</member>
</members>
</doc>