Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
secp256k1_ecdsa_signature_parse_der_lax.cpp
Go to the documentation of this file.
1// Copyright (c) 2020-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <key.h>
6#include <secp256k1.h>
8#include <test/fuzz/fuzz.h>
9#include <test/fuzz/util.h>
10#include <test/util/random.h>
11
12#include <cstdint>
13#include <vector>
14
16int ecdsa_signature_parse_der_lax(secp256k1_ecdsa_signature* sig, const unsigned char* input, size_t inputlen);
17
ECC_Context ecc_context
RAII class initializing and deinitializing global state for elliptic curve support.
Definition key.h:326
#define FUZZ_TARGET(...)
Definition fuzz.h:35
int ecdsa_signature_parse_der_lax(secp256k1_ecdsa_signature *sig, const unsigned char *input, size_t inputlen)
This function is taken from the libsecp256k1 distribution and implements DER parsing for ECDSA signat...
Definition pubkey.cpp:45
bool SigHasLowR(const secp256k1_ecdsa_signature *sig)
Definition key.cpp:197
Opaque data structure that holds a parsed ECDSA signature.
Definition secp256k1.h:74
std::vector< B > ConsumeRandomLengthByteVector(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
Definition util.h:57
void SeedRandomStateForTest(SeedRand seedtype)
Seed the global RNG state for testing and log the seed value.
Definition random.cpp:19
@ ZEROS
Seed with a compile time constant of zeros.
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition time.h:73
FuzzedDataProvider & fuzzed_data_provider
Definition fees.cpp:38