fuget.org
SimpleCrypto
by Shawn Mclean
0.3.30.26
9 Feb 14
Toggle Dropdown
Version 0
0.3.30.26
9 Feb 14
0.3.29.25
11 Oct 13
0.3.28.24
30 Apr 13
0.3.27.22
25 Mar 13
0.3.26.21
25 Mar 13
0.3.0.22
25 Mar 13
0.3.0
15 Mar 13
0.2.0
16 Sep 12
0.1.0.1
9 Apr 12
0.1.0
9 Apr 12
0.0.0.21
25 Mar 13
0.0.0.1
9 Apr 12
0.0.0
25 Mar 13
API Diff
with 0.0.0.1
Toggle Dropdown
Version 0
0.3.30.26
9 Feb 14
0.3.29.25
11 Oct 13
0.3.28.24
30 Apr 13
0.3.27.22
25 Mar 13
0.3.26.21
25 Mar 13
0.3.0.22
25 Mar 13
0.3.0
15 Mar 13
0.2.0
16 Sep 12
0.1.0.1
9 Apr 12
0.1.0
9 Apr 12
0.0.0.21
25 Mar 13
0.0.0.1
9 Apr 12
0.0.0
25 Mar 13
SimpleCrypto.0.3.30.26.nupkg
nuget.org
github.com
<
PackageReference
Include
=
"SimpleCrypto"
Version
=
"0.3.30.26"
/>
Frameworks
net
API Diff between 0.3.30.26 and 0.0.0.1
22
Additions
0
Removals
SimpleCrypto
public
interface
ICryptoService
bool
Compare
(
string
passwordHash1
,
string
passwordHash2
)
string
Compute
(
string
textToHash
)
string
Compute
(
string
textToHash
,
string
salt
)
string
GenerateSalt
()
string
GenerateSalt
(
int
hashIterations
,
int
saltSize
)
int
GetElapsedTimeForIteration
(
int
iteration
)
public
enum
PasswordGroup
Lowercase
=
0
Numeric
=
2
Special
=
3
Uppercase
=
1
public
class
PBKDF2
:
ICryptoService
public
bool
Compare
(
string
passwordHash1
,
string
passwordHash2
)
public
string
Compute
(
string
textToHash
)
public
string
Compute
(
string
textToHash
,
string
salt
)
public
string
GenerateSalt
()
public
string
GenerateSalt
(
int
hashIterations
,
int
saltSize
)
public
int
GetElapsedTimeForIteration
(
int
iteration
)
public
class
RandomPassword
public
RandomPassword
()
public
static
string
Generate
(
PasswordGroup
[]
groups
)
public
static
string
Generate
(
int
length
,
PasswordGroup
[]
groups
)
public
static
string
Generate
(
int
minLength
,
int
maxLength
,
PasswordGroup
[]
groups
)