> For the complete documentation index, see [llms.txt](https://hub.bsvblockchain.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hub.bsvblockchain.org/wiki/cryptography-and-keys/cryptography/elliptic-curve-digital-signature-algorithm.md).

# Elliptic Curve Digital Signature Algorithm

**Elliptic Curve Digital Signature Algorithm** or **ECDSA** is a cryptographic algorithm used by Bitcoin to ensure the effective and secure control of ownership of funds. A few concepts related to ECDSA:

* private key: A secret number, known only to the person that generated it. A private key can be a randomly generated number but in 2019 most wallets use deterministic key schemes derived from [BIP 0032](https://github.com/bitcoin/bips/tree/master/bip-0032). In Bitcoin, someone who can prove ownership of unspent outputs can use the private key to spend the funds. In Bitcoin, a private key is a single unsigned 256-bit integer (32 bytes).
* public key: A coordinate that corresponds to a private key but does not need to be kept secret. A public key can be calculated from a private key, but not vice versa. A public key can be used to determine if a signature is genuine by using ECDSA to validate that a signature was generated by the private key, that corresponds to the public key that has been proffered, without requiring the private key to be divulged. In Bitcoin, public keys are either compressed or uncompressed. Compressed public keys are 33 bytes, consisting of a prefix either 0x02 or 0x03, and a 256-bit integer called **x**. Uncompressed keys are 65 bytes, consisting of constant prefix (0x04), followed by two 256-bit integers called ***x*** and **y** (2 \* 32 bytes). The prefix of a compressed key allows for the **y** value to be derived from the **x** value.
* signatures: A string of bytes proving that a private key was used to sign a message. A signature is mathematically generated from a hash of the message being signed and a private key. The signature itself is two numbers known as **r** and **s** and the message being signed is the Bitcoin transaction (minus the signature data). With the public key, a mathematical algorithm (signature verification) can be used on the signature to determine that it was originally produced from the hash and the private key, without needing to know the private key. Signatures are usually 71, 72, or 73 bytes long, with probabilities approximately 25%, 50% and 25% respectively. In Bitcoin, elliptic curve signatures must sign a hash of a "transaction message" which can be reproduced easily by nodes validating the signature during the process of validating transactions. The message that is hashed for the signature contains the following elements concatenated into a single string:

1. nVersion - Transaction version (4 bytes, little endian)
2. hashPrevouts - concatenation of input source / sources (32 byte hash)
3. hashSequence - concatenation of input nSequence value / values (32 byte hash)
4. outpoint - Outpoint for input being spent (TXID / Vout) (32 byte hash + 4 bytes, little endian)
5. scriptLen - Length of the input scriptPubKey for input being spent (VarInt format)
6. scriptPubKey = Script for input being spent (scriptLen bytes)
7. value - Qty of satoshis being spent by input (8 bytes, little endian)
8. nSequence - Sequence value for input being spent (4 bytes, little endian)
9. hashOutputs - Hash of output/outputs being signed (32 byte hash)
10. nLocktime - Transaction locktime (4 bytes, Little Endian locktime format)
11. Sighash flag (4 bytes, XX000000 where XX is Sighash Flag)
12. Variations based on Sighash flags Depending on the Sighash flag that is set, the signature message can be tailored to include or exclude various elements of the transaction.
13. hashPrevouts If the ANYONECANPAY flag is *not* set, hashPrevouts is the double SHA256 of the serialization of all input outpoints. e.g. SHA256D(CAT(TXID1/Out1, TXID2/Out2, TXID3/Out3) If the ANYONECANPAY flag is set, hashPrevouts is a uint256 of 0x0000......0000.
14. hashSequence If **none** of the ANYONECANPAY, SINGLE, NONE Sighash flags are set, hashSequence is the double SHA256 of the serialization of nSequence of all inputs. e.g. SHA256D(CAT(input1.nSequence, input2.nSequence, input3.nSequence) If one or more of the ANYONECANPAY, SINGLE or NONE Sighash flags are set, hashSequence is a uint256 of 0x0000......0000.
15. hashOutputs If the ALL Sighash flag is set, hashOutputs is the double SHA256 of the serialization of all outputs in Output format. e.g. SHA256D(CAT(value1/scriptLen1/scriptPubkey1, value2/scriptLen2/scriptPubkey2, value3/scriptLen3/scriptPubkey3) If the SINGLE Sighash flag is set and the input index is smaller than the number of outputs, hashOutputs is the double SHA256 of the output of the same index as the input in Output format. Otherwise, hashOutputs is a uint256 of 0x0000......0000.\[7]
16. Applying SIGHASH flags All signatures include SIGHASH flags which tell the transaction validator which parts of the message have been used in the construction of the message hash.
17. See also

* Secp256k1

1. External Links

* [Elliptic Curve Digital Signature Algorithm - Wikipedia article](https://en.wikipedia.org/wiki/Elliptic_Curve_DSA)

1. Attribution This content is based on content sourced from <https://en.bitcoin.it/wiki/Elliptic\\_Curve\\_Digital\\_Signature\\_Algorithm> under [Creative Commons Attribution 3.0](https://creativecommons.org/licenses/by/3.0/). Although it may have been extensively revised and updated, we acknowledge the original authors.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hub.bsvblockchain.org/wiki/cryptography-and-keys/cryptography/elliptic-curve-digital-signature-algorithm.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
