Skip to content

Commit

Permalink
Version.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz committed Aug 10, 2024
1 parent 2d4a838 commit 1dec84f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile.regen
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: distcheck

VERSION = 0.3.13
VERSION = 0.3.14
COMPATS = compat_arc4random.c \
compat_blowfish.c \
compat_crypt_newhash.c \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ clean:
What follows is a description of the features and facilities provided by
the package when included into your sources.

## arc4random
## arc4random(3)

Tests for the [arc4random(3)](https://man.openbsd.org/arc4random.3)
functions in *stdlib.h*, defining `HAVE_ARC4RANDOM` with the
Expand All @@ -190,7 +190,7 @@ If not found, provides compatibility functions. The compatibility
functions provide the same quality (via the same source) as OpenBSD,
using the host's `getentropy` function for seed.

## blf, blowfish
## blowfish(3)

Tests for the original [blf\_enc(3)](https://man.openbsd.org/blf_enc.3)
cipher functions including the raw block functions (not documented on
Expand Down Expand Up @@ -829,7 +829,7 @@ defining `HAVE_TERMIOS` with the result, specifically with the use case of
testing terminal widths via [ioctl(2)](https://man.openbsd.org/ioctl.2) and
`TIOCGWINSZ` (which must also exist). Does not provide any compaibility.

## timingsafe\_bcmp
## timingsafe\_bcmp(3)

Tests for the
[timingsafe\_bcmp(3)](https://man.openbsd.org/timingsafe_bcmp.3)
Expand Down
10 changes: 10 additions & 0 deletions versions.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
This file describes version information of this project.

## 0.3.14

Add lots of new compatibility:
[arc4random(3)](https://man.openbsd.org/arc4random.3),
[timingsafe\_bcmp(3)](https://man.openbsd.org/timingsafe_bcmp.3),
[blf\_enc(3)](https://man.openbsd.org/blf_enc.3), and
[crypt\_newhash(3)](https://man.openbsd.org/crypt_newhash.3), and

Fixes that `crypt` wasn't being picked up on older Linux machines.

## 0.3.13

Fix regression testing on Linux (termios would fail). Add
Expand Down

0 comments on commit 1dec84f

Please sign in to comment.