Skip to content

Commit ceb0077

Browse files
authored
Merge pull request #8 from itzmeanjan/7-add-support-for-using-either-shake256-or-turboshake256-as-xof
Resolve "Add support for using either SHAKE256 or TurboSHAKE256 as XOF"
2 parents 56e8a4b + b04e5d3 commit ceb0077

24 files changed

Lines changed: 2891 additions & 4144 deletions

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ BreakBeforeTernaryOperators: true
8181
BreakConstructorInitializers: BeforeComma
8282
BreakInheritanceList: BeforeComma
8383
BreakStringLiterals: true
84-
ColumnLimit: 120
84+
ColumnLimit: 160
8585
CommentPragmas: '^ IWYU pragma:'
8686
CompactNamespaces: false
8787
ConstructorInitializerIndentWidth: 2

.github/workflows/test_ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Collects inspiration from https://github.com/itzmeanjan/sha3/blob/fb21648e136d7a64ce5c065fa829d4e3254414f4/.github/workflows/test_ci.yml
2-
name: Test RandomShake Cryptographically Secure PRNG
2+
name: Test RandomShake CSPRNG
33

44
on:
55
push:
@@ -12,7 +12,10 @@ jobs:
1212
runs-on: ${{matrix.os}}
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, macos-latest]
15+
os: [
16+
ubuntu-latest, # x86_64
17+
macos-latest, # aarch64
18+
]
1619
compiler: [g++, clang++]
1720
build_type: [debug, release]
1821
test_type: [standard, asan, ubsan]

README.md

Lines changed: 72 additions & 54 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)