Skip to content

Commit 2ebe877

Browse files
prepare for release v0.0.8
1 parent 4e6c7f8 commit 2ebe877

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

ChangeLog.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
# wolfCLU v0.0.8 (Mar 04, 2022)
2+
### Commands Added
3+
- Add rand command
4+
- Add PKCS12 parsing support and command
5+
- Add a basic s_client command for simple TLS client connections
6+
- Add support for x509 verify commnad
7+
- Add initial rsa command support
8+
- Add CRL verify command
9+
- Add ca command
10+
- Add dsaparam command
11+
- Add sha hash commands (sha256, sha384, sha512)
12+
- Add dhparam command
13+
14+
### Fixes and Enhancements
15+
- Support for parsing multiple organization names with conf file
16+
- Set the default certificate request version to 3
17+
- Add print out of private key to PKEY command
18+
- Added support for -nosalt option
19+
- Fix for RSA free with dgst command
20+
- Testing with FIPS 140-3 wolfCrypt
21+
- Add -subj support to req commnad
22+
- Fix for -base64 with enc
23+
- Fix for piping errors to stderr instead of stdout
24+
- Removed testing-certs directory in favor of certs directory
25+
- Fix for handling large file sizes with dgst and hash command
26+
- Expanded req command to handle -text, -noout, -extensions and -verify
27+
- Expanded x509 command to handle -subject, -issuer, -serial, -dates, -email, -fingerprint, -purpose, -hash
28+
- Added -text support to ecparam command
29+
- Added support for -sign with dgst command
30+
- Tied in github actions for continuous integration testing
31+
- Added support for creating encrypted private keys with -newkey
32+
33+
134
# wolfCLU v0.0.6 (Nov 09, 2021)
235

336
- Add ecparam for ECC key generation with parameters

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#requires user to have AutoConf version 2.63 or greater.
1111
AC_PREREQ([2.63])
1212

13-
AC_INIT([wolfclu], [0.0.7], [http://www.wolfssl.com])
13+
AC_INIT([wolfclu], [0.0.8], [http://www.wolfssl.com])
1414

1515
#a helpful directory to keep clutter out of root
1616
AC_CONFIG_AUX_DIR([build-aux])

tests/genkey_sign_ver/genkey-sign-ver-test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626

2727
cleanup_genkey_sign_ver(){
28+
rm -f ecckey
2829
rm ecckey.priv
2930
rm ecckey.pub
3031
rm edkey.priv

wolfclu/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
extern "C" {
2727
#endif
2828

29-
#define CLUWOLFSSL_VERSION_STRING "0.0.7"
30-
#define CLUWOLFSSL_VERSION_HEX 0x00000007
29+
#define CLUWOLFSSL_VERSION_STRING "0.0.8"
30+
#define CLUWOLFSSL_VERSION_HEX 0x00000008
3131

3232
#ifdef __cplusplus
3333
}

0 commit comments

Comments
 (0)