Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
harrison314 committed Jan 25, 2024
1 parent b0e2c46 commit de890cd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
5 changes: 3 additions & 2 deletions Doc/SuportedAlgorithms.md
Original file line number Diff line number Diff line change
@@ -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 |
| :--- | ---: | ---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
Expand Down Expand Up @@ -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 | | | || | | |
Expand Down
2 changes: 1 addition & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Build>(x => x.BuildAll);

[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
Expand Down
4 changes: 0 additions & 4 deletions build/NetRuntimeEtensions.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<Copyright>Copyright (c) $([System.DateTime]::Now.ToString('yyyy')), Jozef Gajdoš</Copyright>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<Version>0.4.0</Version>
<Version>0.5.0</Version>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions src/Src/BouncyHsm.Pkcs11Lib/globalContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit de890cd

Please sign in to comment.