1

Now I am using below code in aspx page. But Now I need something in code behind in C#. Is there any library available?

<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha3.js"/>
<script>
    var hash = CryptoJS.SHA3("Message", { outputLength: 512 });
</script>
James123
  • 11,184
  • 66
  • 189
  • 343

1 Answers1

3

There are libraries that implement SHA3 in C#. Some are:

Checkout their docs for code examples.

Mrchief
  • 75,126
  • 20
  • 142
  • 189