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?










share|improve this question


















  • 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















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?










share|improve this question


















  • 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













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?










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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














  • 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












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.






share|improve this answer























  • Wow, I guess I missed that little version switcher select list at the top. Thanks!
    – kspearrin
    Nov 8 at 4:30











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























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.






share|improve this answer























  • Wow, I guess I missed that little version switcher select list at the top. Thanks!
    – kspearrin
    Nov 8 at 4:30















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.






share|improve this answer























  • Wow, I guess I missed that little version switcher select list at the top. Thanks!
    – kspearrin
    Nov 8 at 4:30













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.






share|improve this answer














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.







share|improve this answer














share|improve this answer



share|improve this answer








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


















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini