This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace Encryption | |
{ | |
/// <summary> | |
/// myDPAPI provides an interface to the Data Protection API which provides useful system-level security tools. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace Hashing | |
{ | |
/// <summary> | |
// mySHA provides an interface to the SHA256 hashing function. | |
/// </summary> | |
public static class mySHA |