aboutsummaryrefslogtreecommitdiff
path: root/src/testrand_impl.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-09-07 18:12:35 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-09-07 18:12:35 +0100
commit611562806cf3fd3028e24e6c5a8e8dcb8805be38 (patch)
tree8664fa7a12899d879cab995b49d9457b22accf9d /src/testrand_impl.h
parent41797f8ab9932279689b6731f8826f08db68ba16 (diff)
downloadbitcoin-611562806cf3fd3028e24e6c5a8e8dcb8805be38.tar.xz
Squashed 'src/secp256k1/' changes from 642c885b61..2f2ccc4695
2f2ccc4695 Merge bitcoin-core/secp256k1#1600: cmake: Introduce `SECP256K1_APPEND_LDFLAGS` variable 421ed1b46f cmake: Introduce `SECP256K1_APPEND_LDFLAGS` variable 1988855079 Merge bitcoin-core/secp256k1#1586: fix: remove duplicate 'the' from header file comment b307614401 Merge bitcoin-core/secp256k1#1583: ci: Bump GCC_SNAPSHOT_MAJOR to 15 fa67b6752d refactor: Use array initialization for unterminated strings 9b0f37bff1 fix: remove duplicate 'the' from header file comment e34b476730 ci: Bump GCC_SNAPSHOT_MAJOR to 15 3fdf146bad Merge bitcoin-core/secp256k1#1578: ci: Silent Homebrew's noisy reinstall warnings f8c1b0e0e6 Merge bitcoin-core/secp256k1#1577: release cleanup: bump version after 0.5.1 7057d3c9af ci: Silent Homebrew's noisy reinstall warnings c3e40d75db release cleanup: bump version after 0.5.1 git-subtree-dir: src/secp256k1 git-subtree-split: 2f2ccc469540fde6495959cec061e95aab033148
Diffstat (limited to 'src/testrand_impl.h')
-rw-r--r--src/testrand_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testrand_impl.h b/src/testrand_impl.h
index 07564f7f3f..b84f5730a9 100644
--- a/src/testrand_impl.h
+++ b/src/testrand_impl.h
@@ -18,7 +18,7 @@
static uint64_t secp256k1_test_state[4];
SECP256K1_INLINE static void testrand_seed(const unsigned char *seed16) {
- static const unsigned char PREFIX[19] = "secp256k1 test init";
+ static const unsigned char PREFIX[] = {'s', 'e', 'c', 'p', '2', '5', '6', 'k', '1', ' ', 't', 'e', 's', 't', ' ', 'i', 'n', 'i', 't'};
unsigned char out32[32];
secp256k1_sha256 hash;
int i;