Implmemented in C# 4 to match up with the Java/Python/C++ Keyczar standard features and will interoperate with them by default. Uses BouncyCastle as backend for most encryption.
- Keyczar-dotnet: http://jbtule.github.com/keyczar-dotnet
- Official keyczar site: http://keyczar.org
KeyczarTool.exe
provides the primary mechanism for creating and managing keysets.
Calling KeyczarTool.exe
from the commandline without flags will display usage.
See Wiki for more info.
- .net 4.0 or mono v2.10
Source code can be obtained with
git clone --recursive https://github.com/jbtule/keyczar-dotnet.git
Source can be built with Visual Studio 2012, MonoDevelop, msbuild, or xbuild using the Keyczar.sln as long as you have the nuget dependencies downloaded. More info about building, especially on mono can be found on the wiki.
Master | Stable | Provider |
---|---|---|
Windows CI Provided By CodeBetter and JetBrains | ||
Mono CI Provided by travis-ci |
- Should interoperate with java/python/c++ with standard api
- All unofficial/incompatible api changes are under the unofficial names space to be clear what is provided that won't interoperate with java/python/c++.
- Unofficial algorithms included are AES-GCM (
KeyType=C#_AES_AEAD
) and RSA-PSS (KeyType=C#_RSA_SIGN_PRIV
) use the unofficial flag on the KeyczarTool. VanillaSigner
andVanillaVerifier
are feature identical to java/python/c++UnversionedSigner
andUnversionVerifer
- The Functionality of java/python/c++
SessionEncrypter
,SessionDecrypter
,SignedSessionEncrypter
, andSignedSessionDecrypter
are provided by the C#SessionCrypter
via constructor arguments.