diff --git a/Doc/SuportedAlgorithms.md b/Doc/SuportedAlgorithms.md index 9a30b71..9b87621 100644 --- a/Doc/SuportedAlgorithms.md +++ b/Doc/SuportedAlgorithms.md @@ -1,9 +1,9 @@ # Supported algorithms -Supported algorithms for _Bouncy Hsm_ version 0.4.0.0 (commit _75691e8aed4eb1f2e54faf3a21fdbee014610b02_). +Supported algorithms for _Bouncy Hsm_ version 0.5.0.0 (commit _b0e2c468127b40efe3c849511a0a20eb3d9e081c_). ## Mechanisms -_Bouncy Hsm_ supports 92 mechanisms. +_Bouncy Hsm_ supports 93 mechanisms. | Mechanism | Min key size | Max key size | Digest | Sign, Verify | Derive | Encrypt, Decrypt | Generate key pair | Generate key | Wrap, Unwrap | | :--- | ---: | ---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | @@ -82,6 +82,7 @@ _Bouncy Hsm_ supports 92 mechanisms. | `CKM_ECDSA_SHA384` | 192 | 521 | | ✓ | | | | | | | `CKM_ECDSA_SHA512` | 192 | 521 | | ✓ | | | | | | | `CKM_ECDH1_DERIVE` | 192 | 521 | | | ✓ | | | | | +| `CKM_ECDH1_COFACTOR_DERIVE` | 192 | 521 | | | ✓ | | | | | | `CKM_AES_KEY_GEN` | 16 | 32 | | | | | | ✓ | | | `CKM_AES_ECB` | 16 | 32 | | | | ✓ | | | | | `CKM_AES_CBC` | 16 | 32 | | | | ✓ | | | | diff --git a/build/Build.cs b/build/Build.cs index 73a07d2..276705c 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -27,7 +27,7 @@ InvokedTargets = new[] { nameof(BuildAll) })] public partial class Build : NukeBuild { - private static string ThisVersion = "0.4.0"; + private static string ThisVersion = "0.5.0"; public static int Main() => Execute(x => x.BuildAll); [Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")] diff --git a/build/NetRuntimeEtensions.cs b/build/NetRuntimeEtensions.cs deleted file mode 100644 index 59abb04..0000000 --- a/build/NetRuntimeEtensions.cs +++ /dev/null @@ -1,4 +0,0 @@ -public static class NetRuntimeEtensions -{ - -} \ No newline at end of file diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 4f46d95..a9ff9bb 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -10,6 +10,6 @@ Copyright (c) $([System.DateTime]::Now.ToString('yyyy')), Jozef Gajdoš False BSD-3-Clause - 0.4.0 + 0.5.0 diff --git a/src/Src/BouncyHsm.Pkcs11Lib/globalContext.h b/src/Src/BouncyHsm.Pkcs11Lib/globalContext.h index 327e1d3..633894d 100644 --- a/src/Src/BouncyHsm.Pkcs11Lib/globalContext.h +++ b/src/Src/BouncyHsm.Pkcs11Lib/globalContext.h @@ -27,9 +27,9 @@ void GlobalContextInit(); #define BOUNCY_HSM_DEFAULT_PORT 8765 #define PKCS11_LIB_DESCRIPTION "BouncyHsm.Pkcs11 library" -#define BOUNCY_HSM_LIBVERSION "0.4.0.0" +#define BOUNCY_HSM_LIBVERSION "0.5.0.0" #define BOUNCY_HSM_LIBVERSION_MAJOR 0 -#define BOUNCY_HSM_LIBVERSION_MINOR 4 +#define BOUNCY_HSM_LIBVERSION_MINOR 5 #endif //GLOBAL_CONTEXT \ No newline at end of file