mscorlib(4.0.0.0) API with additions
KeySizes.cs
1
using
System
.
Runtime
.
InteropServices
;
2
3
namespace
System.Security.Cryptography
4
{
6
[ComVisible(
true
)]
7
public
sealed
class
KeySizes
8
{
9
private
int
m_minSize;
10
11
private
int
m_maxSize;
12
13
private
int
m_skipSize;
14
17
public
int
MinSize
=> m_minSize;
18
21
public
int
MaxSize
=> m_maxSize;
22
25
public
int
SkipSize
=> m_skipSize;
26
31
public
KeySizes
(
int
minSize,
int
maxSize,
int
skipSize)
32
{
33
m_minSize = minSize;
34
m_maxSize = maxSize;
35
m_skipSize = skipSize;
36
}
37
}
38
}
System.Security.Cryptography.KeySizes.KeySizes
KeySizes(int minSize, int maxSize, int skipSize)
Initializes a new instance of the T:System.Security.Cryptography.KeySizes class with the specified ke...
Definition:
KeySizes.cs:31
System.Security.Cryptography.KeySizes.MinSize
int MinSize
Specifies the minimum key size in bits.
Definition:
KeySizes.cs:17
System.Security.Cryptography
Definition:
Aes.cs:3
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Security.Cryptography.KeySizes.MaxSize
int MaxSize
Specifies the maximum key size in bits.
Definition:
KeySizes.cs:21
System.Security.Cryptography.KeySizes.SkipSize
int SkipSize
Specifies the interval between valid key sizes in bits.
Definition:
KeySizes.cs:25
System.Security.Cryptography.KeySizes
Determines the set of valid key sizes for the symmetric cryptographic algorithms.
Definition:
KeySizes.cs:7
All cs
System.Security.Cryptography
KeySizes.cs
Generated by
1.8.15