Cannot specify 4 arguments (hash algorithm name) for Rfc2898DeriveBytes
up vote
1
down vote
favorite
According to the docs here, I should be able to create Rfc2898DeriveBytes
with a custom hash algorithm (SHA256 in my case):
public Rfc2898DeriveBytes (byte password, byte salt, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
I have created a .NET Standard 2.0 class library with the following:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
My Class
private static byte Pbkdf2(string data)
{
// ...
using(var pbkdf2 = new Rfc2898DeriveBytes(null, null, 50000, HashAlgorithmName.SHA256))
{
return pbkdf2.GetBytes(32);
}
}
I get the following error:
'Rfc2898DeriveBytes' does not contain a constructor that takes 4 arguments
Why can I not add a hash algorithm to the constructor of Rfc2898DeriveBytes
?
c# .net-core .net-standard
add a comment |
up vote
1
down vote
favorite
According to the docs here, I should be able to create Rfc2898DeriveBytes
with a custom hash algorithm (SHA256 in my case):
public Rfc2898DeriveBytes (byte password, byte salt, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
I have created a .NET Standard 2.0 class library with the following:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
My Class
private static byte Pbkdf2(string data)
{
// ...
using(var pbkdf2 = new Rfc2898DeriveBytes(null, null, 50000, HashAlgorithmName.SHA256))
{
return pbkdf2.GetBytes(32);
}
}
I get the following error:
'Rfc2898DeriveBytes' does not contain a constructor that takes 4 arguments
Why can I not add a hash algorithm to the constructor of Rfc2898DeriveBytes
?
c# .net-core .net-standard
1
For what it's worth this API with HashAlgorithmName will be part of .NET Standard 2.1. apisof.net/catalog/…
– vcsjones
Nov 8 at 5:08
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
According to the docs here, I should be able to create Rfc2898DeriveBytes
with a custom hash algorithm (SHA256 in my case):
public Rfc2898DeriveBytes (byte password, byte salt, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
I have created a .NET Standard 2.0 class library with the following:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
My Class
private static byte Pbkdf2(string data)
{
// ...
using(var pbkdf2 = new Rfc2898DeriveBytes(null, null, 50000, HashAlgorithmName.SHA256))
{
return pbkdf2.GetBytes(32);
}
}
I get the following error:
'Rfc2898DeriveBytes' does not contain a constructor that takes 4 arguments
Why can I not add a hash algorithm to the constructor of Rfc2898DeriveBytes
?
c# .net-core .net-standard
According to the docs here, I should be able to create Rfc2898DeriveBytes
with a custom hash algorithm (SHA256 in my case):
public Rfc2898DeriveBytes (byte password, byte salt, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
I have created a .NET Standard 2.0 class library with the following:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
My Class
private static byte Pbkdf2(string data)
{
// ...
using(var pbkdf2 = new Rfc2898DeriveBytes(null, null, 50000, HashAlgorithmName.SHA256))
{
return pbkdf2.GetBytes(32);
}
}
I get the following error:
'Rfc2898DeriveBytes' does not contain a constructor that takes 4 arguments
Why can I not add a hash algorithm to the constructor of Rfc2898DeriveBytes
?
c# .net-core .net-standard
c# .net-core .net-standard
asked Nov 8 at 2:59
kspearrin
3,29332140
3,29332140
1
For what it's worth this API with HashAlgorithmName will be part of .NET Standard 2.1. apisof.net/catalog/…
– vcsjones
Nov 8 at 5:08
add a comment |
1
For what it's worth this API with HashAlgorithmName will be part of .NET Standard 2.1. apisof.net/catalog/…
– vcsjones
Nov 8 at 5:08
1
1
For what it's worth this API with HashAlgorithmName will be part of .NET Standard 2.1. apisof.net/catalog/…
– vcsjones
Nov 8 at 5:08
For what it's worth this API with HashAlgorithmName will be part of .NET Standard 2.1. apisof.net/catalog/…
– vcsjones
Nov 8 at 5:08
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
The link you posted is for .NET Framework, not .NET Standard. The documentation for.NET Standard is here. In .NET Standard there is no constructor with 4 parameters.
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
The link you posted is for .NET Framework, not .NET Standard. The documentation for.NET Standard is here. In .NET Standard there is no constructor with 4 parameters.
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
add a comment |
up vote
3
down vote
accepted
The link you posted is for .NET Framework, not .NET Standard. The documentation for.NET Standard is here. In .NET Standard there is no constructor with 4 parameters.
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
The link you posted is for .NET Framework, not .NET Standard. The documentation for.NET Standard is here. In .NET Standard there is no constructor with 4 parameters.
The link you posted is for .NET Framework, not .NET Standard. The documentation for.NET Standard is here. In .NET Standard there is no constructor with 4 parameters.
edited Nov 8 at 4:39
answered Nov 8 at 4:20
Ivan Vargas
26116
26116
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
add a comment |
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
Wow, I guess I missed that little version switcher select list at the top. Thanks!
– kspearrin
Nov 8 at 4:30
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53200932%2fcannot-specify-4-arguments-hash-algorithm-name-for-rfc2898derivebytes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
For what it's worth this API with HashAlgorithmName will be part of .NET Standard 2.1. apisof.net/catalog/…
– vcsjones
Nov 8 at 5:08