├── .gitignore ├── LICENSE ├── README.md ├── Whisker.sln ├── Whisker ├── App.config ├── DSInternals.Common │ ├── Data │ │ ├── DNWithBinary.cs │ │ └── Hello │ │ │ ├── CustomKeyInformation.cs │ │ │ ├── KeyCredential.cs │ │ │ ├── KeyCredentialEntryType.cs │ │ │ ├── KeyCredentialVersion.cs │ │ │ ├── KeyFlags.cs │ │ │ ├── KeySource.cs │ │ │ ├── KeyStrength.cs │ │ │ ├── KeyUsage.cs │ │ │ └── VolumeType.cs │ ├── Extensions │ │ ├── ByteArrayExtensions.cs │ │ └── RSAExtensions.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ └── Validator.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── Whisker.csproj └── assets └── usage.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/README.md -------------------------------------------------------------------------------- /Whisker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker.sln -------------------------------------------------------------------------------- /Whisker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/App.config -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/DNWithBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/DNWithBinary.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/CustomKeyInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/CustomKeyInformation.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeyCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeyCredential.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeyCredentialEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeyCredentialEntryType.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeyCredentialVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeyCredentialVersion.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeyFlags.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeySource.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeyStrength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeyStrength.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/KeyUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/KeyUsage.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Data/Hello/VolumeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Data/Hello/VolumeType.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Extensions/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Extensions/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Extensions/RSAExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Extensions/RSAExtensions.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Properties/Resources.resx -------------------------------------------------------------------------------- /Whisker/DSInternals.Common/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/DSInternals.Common/Validator.cs -------------------------------------------------------------------------------- /Whisker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/Program.cs -------------------------------------------------------------------------------- /Whisker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Whisker/Whisker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/Whisker/Whisker.csproj -------------------------------------------------------------------------------- /assets/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/Whisker/HEAD/assets/usage.png --------------------------------------------------------------------------------