Stratum V2 employs a type of encryption scheme called AEAD (authenticated encryption with associated data) to address the security aspects of all communication that occurs between clients and servers. This provides both confidentiality and integrity for the ciphertexts (i.e. encrypted data) being transferred, as well as providing integrity for associated data which is not encrypted. Prior to opening any Stratum V2 channels for mining, clients MUST first initiate the cryptographic session state that is used to encrypt all messages sent between themselves and servers. Thus, the cryptographic session state is independent of V2 messaging conventions.
At the same time, this specification proposes optional use of a particular handshake protocol based on the Noise Protocol framework. The client and server establish secure communication using Diffie-Hellman (DH) key agreement, as described in greater detail in the Authenticated Key Agreement Handshake section below.
Using the handshake protocol to establish secured communication is optional on the local network (e.g. local mining devices talking to a local mining proxy). However, it is mandatory for remote access to the upstream nodes, whether they be pool mining services, job declarating services or template distributors.
Data transferred by the mining protocol MUST not provide adversary information that they can use to estimate the performance of any particular miner. Any intelligence about submitted shares can be directly converted to estimations of a miner’s earnings and can be associated with a particular username. This is unacceptable privacy leakage that needs to be addressed.
The reasons why Noise Protocol Framework has been chosen are listed below:
- The Framework provides a formalism to describe the handshake protocol that can be verified.
- A custom certificate scheme is now possible (no need to use x509 certificates).
Noise encrypted session requires Elliptic Curve (EC), Hash function (HASH()
) and cipher function that supports AEAD mode1.
This specification describes mandatory cryptographic primitives that each implementation needs to support. These primitives are chosen so that Noise Encryption layer for Stratum V2 can be implemented using primitives already present in Bitcoin Core project at the time of writing this spec.
Secp256k1 curve points, i.e. Public Keys, are points with of X- and Y-coordinate. We serialize them in three different ways, only using the x-coordinate.
-
When signing or verifying a certificate, we use the 32 byte x-only encoding as defined in BIP 340.3.
-
When sharing keys during the handshake, whether in plain text or encrypted, we use the 64 byte ElligatorSwift x-only encoding as defined in BIP3247 under "ElligatorSwift encoding of curve X coordinates". This encoding uses 64-bytes instead of 32-bytes in order to produce a pseudo-random bytesteam. This is useful because the protocol handshake starts with each side sending their public key in plain text. Additionally the use of X-only ElligatorSwift ECDH removes the need to grind or negate private keys.
-
The Authority public key is base58-check encoded as described in 4.7.
Digital signatures are serialized in 64-bytes like in BIP3403.
Key generation algorithm:
- generate random 32-byte secret key
sk
- let
d' = int(sk)
- fail if
d = 0
ord' > n
wheren
is group order of secp256k1 curve - compute
P
asd'⋅G
- drop the Y coordinate and compute (u, t) = XElligatorSwift(P.x)
- ellswift_pub = bytes(u) || bytes(t)
- output keypair
(sk, ellswift_pub)
To perform X-only ECDH we use ellswift_ecdh_xonly(ellswift_theirs, d) as described in BIP3247 under "Shared secret computation". The result is 32 bytes.
No assumption is made about the parity of Y-coordinate. For the purpose of signing (e.g. certificate) and ECDH (handshake) it is not necessary to "grind" the private key. The choosen algoritms take care of this by implicitly negatating the key, as if its public key had an even Y-coordinate.
For more information refer to BIP3403 and BIP3247.
SHA-256()
is used as aHASH()
- Cipher has methods for encryption and decryption for key
k
, noncen
, associated_dataad
, plaintextpt
and ciphertextct
ENCRYPT(k, n, ad, pt)
DECRYPT(k, n, ad, ct)
- ChaCha20 and Poly1305 in AEAD mode4 (ChaChaPoly) is used as a default AEAD cipher
Object that encapsulates encryption and decryption operations with underlying AEAD mode cipher functions using 32-byte encryption key k
and 8-byte nonce n
.
CipherState has the following interface:
InitializeKey(key)
:- Sets
k = key
,n = 0
- Sets
EncryptWithAd(ad, plaintext)
- If
k
is non-empty, performsENCRYPT(k, n++, ad, plaintext)
on the underlying cipher function, otherwise returnsplaintext
. The++
post-increment operator applied ton
means: "use the current n value, then increment it". - Where
ENCRYPT
is an evaluation ofChaCha20-Poly1305
(IETF variant) with the passed arguments, with noncen
encoded as 32 zero bits, followed by a little-endian 64-bit value. Note: this follows the Noise Protocol convention, rather than our normal endian.
- If
DecryptWithAd(ad, ciphertext)
- If
k
is non-empty performsDECRYPT(k, n++, ad, plaintext)
on the underlying cipher function, otherwise returns ciphertext. If an authentication failure occurs inDECRYPT()
thenn
is not incremented and an error is signaled to the caller. - Where
DECRYPT
is an evaluation ofChaCha20-Poly1305
(IETF variant) with the passed arguments, with noncen
encoded as 32 zero bits, followed by a little-endian 64-bit value.
- If
Throughout the handshake process, each side maintains these variables:
ck
: chaining key. Accumulated hash of all previous ECDH outputs. At the end of the handshakeck
is used to derive encryption keyk
.h
: handshake hash. Accumulated hash of all handshake data that has been sent and received so far during the handshake processe
,re
ephemeral keys. Ephemeral key and remote party's ephemeral key, respectively.s
,rs
static keys. Static key and remote party's static key, respectively.
The following functions will also be referenced:
-
generateKey()
: generates and returns a freshsecp256k1
keypair- Where the object returned by
generateKey
has two attributes:.public_key
, which returns an abstract object representing the public key.private_key
, which represents the private key used to generate the public key
- Where the public_key object also has a single method:
.serializeEllSwift()
that outputs a 64-byte EllSwift encoded serialization of the X-coordinate of EC point (the Y-coordinate is ignored)
- Where the object returned by
-
a || b
denotes the concatenation of two byte stringsa
andb
-
HMAC-HASH(key, data)
- Applies HMAC defined in
RFC 2104
5 - In our case where the key is always 32 bytes, this reduces down to:
- pad the key with zero bytes to fill the hash block (block length is 64 bytes in case of SHA-256):
k' = k || <zero-bytes>
- calculate
temp = SHA-256((k' XOR ipad) || data)
where ipad is repeated 0x36 byte - output
SHA-256((k' XOR opad) || temp)
where opad is repeated 0x5c byte
- pad the key with zero bytes to fill the hash block (block length is 64 bytes in case of SHA-256):
- Applies HMAC defined in
-
HKDF(chaining_key, input_key_material)
: a function defined inRFC 5869
6, evaluated with a zero-lengthinfo
field and 2num_output
field:- Sets
temp_key = HMAC-HASH(chaining_key, input_key_material)
- Sets
output1 = HMAC-HASH(temp_key, byte(0x01))
- Sets
output2 = HMAC-HASH(temp_key, output1 || byte(0x02))
- Returns the pair
(output1, output2)
- Sets
-
MixKey(input_key_material)
: Executes the following steps:- sets
(ck, temp_k) = HKDF(ck, input_key_material, 2)
- calls
InitializeKey(temp_k)
- sets
-
MixHash(data)
: Setsh = HASH(h || data)
-
EncryptAndHash(plaintext)
:- If
k
is non-empty setsciphertext = EncryptWithAd(h, plaintext)
, otherwiseciphertext = plaintext
- Calls
MixHash(ciphertext)
- returns
ciphertext
- If
-
DecryptAndHash(ciphertext)
:- If
k
is non-empty setsplaintext = DecryptWithAd(h, ciphertext)
, otherwiseplaintext = ciphertext
- Calls
MixHash(ciphertext)
- returns
plaintext
- If
-
ECDH(k, rk)
: performs an Elliptic-Curve Diffie-Hellman operation usingk
, which is a validsecp256k1
private key, andrk
, which is a EllSwift encoded public key- The output is 32 bytes
- It is a shortcut for performing operation
v2_ecdh
defined in BIP3247:- let
k, ellswift_k
be key pair created byellswift_create()
function - let
rk
be remote public key encoded as ellswift. - let
initiator
be bool flag that is true if the party performing ECDH initiated the handshake - then
ECDH(k, rk) = v2_ecdh(k, ellswift_k, rk, initiator)
- let
-
v2_ecdh(k, ellswift_k, rk, initiator)
:- let
ecdh_point_x32
=ellswift_ecdh_xonly(rk, k)
- if initiator == true:
- return
tagged_hash(ellswift_k, rk, ecdh_point_x32)
- else return
tagged_hash(rk, ellswift_k, ecdh_point_x32)
- return
- Note that the ecdh result is not commutative with respect to roles! Therefore the initiator flag is needed
- let
-
ellswift_ecdh_xonly
- see BIP3247 -
tagged_hash(a, b, c)
:- let tag =
SHA256("bip324_ellswift_xonly_ecdh")
- return
SHA256(concatenate(tag, tag, a, b, c))
- let tag =
The handshake chosen for the authenticated key exchange is an Noise_NX
augmented by server authentication with simple 2 level public key infrastructure.
The complete authenticated key agreement (Noise NX
) is performed in three distinct steps (acts).
- NX-handshake part 1:
-> e
- NX-handshake part 2:
<- e, ee, s, es, SIGNATURE_NOISE_MESSAGE
- Server authentication: Initiator validates authenticity of server using from
SIGNATURE_NOISE_MESSAGE
Should the decryption (i.e. authentication code validation) fail at any point, the session must be terminated.
Prior to starting first round of NX-handshake, both initiator and responder initializes handshake variables h
(hash output), ck
(chaining key) and k
(encryption key):
- hash output
h = HASH(protocolName)
- Since
protocolName
more than 32 bytes in length, applyHASH
to it. protocolName
is official noise protocol name:Noise_NX_Secp256k1+EllSwift_ChaChaPoly_SHA256
encoded as an ASCII string
- chaining key
ck = h
- hash output
h = HASH(h)
- encryption key
k
empty
Initiator generates ephemeral keypair and sends the public key to the responder:
- initializes empty output buffer
- generates ephemeral keypair
e
, appendse.public_key.serializeEllSwift()
to the buffer (64 bytes plaintext EllSwift encoded public key) - calls
MixHash(e.public_key)
- calls
EncryptAndHash()
with empty payload and appends the ciphertext to the buffer (note that k is empty at this point, so this effectively reduces down toMixHash()
on empty data) - submits the buffer for sending to the responder in the following format
Field name | Description |
---|---|
PUBKEY | Initiator's ephemeral public key |
Message length: 64 bytes
- receives ephemeral public key message (64 bytes plaintext EllSwift encoded public key)
- parses received public key as
re.public_key
- calls
MixHash(re.public_key)
- calls
DecryptAndHash()
on remaining bytes (i.e. on empty data with empty k, thus effectively only callsMixHash()
on empty data)
Responder provides its ephemeral, encrypted static public keys and encrypted SIGNATURE_NOISE_MESSAGE
to the initiator, performs Elliptic-Curve Diffie-Hellman operations.
Field Name | Data Type | Description |
---|---|---|
version | U16 | Version of the certificate format |
valid_from | U32 | Validity start time (unix timestamp) |
not_valid_after | U32 | Signature is invalid after this point in time (unix timestamp) |
signature | SIGNATURE | Certificate signature |
Length: 74 bytes
- initializes empty output buffer
- generates ephemeral keypair
e
, appendse.public_key
to the buffer (64 bytes plaintext EllSwift encoded public key) - calls
MixHash(e.public_key)
- calls
MixKey(ECDH(e.private_key, re.public_key))
- appends
EncryptAndHash(s.public_key)
(64 bytes encrypted EllSwift encoded public key, 16 bytes MAC) - calls
MixKey(ECDH(s.private_key, re.public_key))
- appends
EncryptAndHash(SIGNATURE_NOISE_MESSAGE)
to the buffer - submits the buffer for sending to the initiator
- return pair of CipherState objects, the first for encrypting transport messages from initiator to responder, and the second for messages in the other direction:
- sets
temp_k1, temp_k2 = HKDF(ck, zerolen, 2)
- creates two new CipherState objects
c1
andc2
- calls
c1.InitializeKey(temp_k1)
andc2.InitializeKey(temp_k2)
- returns the pair
(c1, c2)
- sets
Field name | Description |
---|---|
PUBKEY | Responder's plaintext ephemeral public key |
PUBKEY | Responder's encrypted static public key |
MAC | Message authentication code for responder's static public key |
SIGNATURE_NOISE_MESSAGE | Signed message containing Responder's static key. Signature is issued by authority that is generally known to operate the server acting as the noise responder |
MAC | Message authentication code for SIGNATURE_NOISE_MESSAGE |
Message length: 170 bytes
- receives NX-handshake part 2 message
- interprets first 64 bytes as EllSwift encoded
re.public_key
- calls
MixHash(re.public_key)
- calls
MixKey(ECDH(e.private_key, re.public_key))
- decrypts next 80 bytes with
DecryptAndHash()
and stores the results asrs.public_key
which is server's static public key (note that 64 bytes is the public key and 16 bytes is MAC) - calls
MixKey(ECDH(e.private_key, rs.public_key)
- decrypts next 90 bytes with
DecryptAndHash()
and deserialize plaintext intoSIGNATURE_NOISE_MESSAGE
(74 bytes data + 16 bytes MAC) - return pair of CipherState objects, the first for encrypting transport messages from initiator to responder, and the second for messages in the other direction:
- sets
temp_k1, temp_k2 = HKDF(ck, zerolen, 2)
- creates two new CipherState objects
c1
andc2
- calls
c1.InitializeKey(temp_k1)
andc2.InitializeKey(temp_k2)
- returns the pair
(c1, c2)
- sets
During the handshake, initiator receives SIGNATURE_NOISE_MESSAGE
and server's static public key. These parts make up a CERTIFICATE
signed by an authority whose public key is generally known (for example from pool's website). Initiator confirms the identity of the server by verifying the signature in the certificate.
Field Name | Data Type | Description | Signed field |
---|---|---|---|
version | U16 | Version of the certificate format | YES |
valid_from | U32 | Validity start time (unix timestamp) | YES |
not_valid_after | U32 | Signature is invalid after this point in time (unix timestamp) | YES |
server_public_key | PUBKEY | Server's static public key that was used during NX handshake | YES |
authority_public_key | PUBKEY | Certificate authority's public key that signed this message | NO |
signature | SIGNATURE | Signature over the serialized fields marked for signing | NO |
This message is not sent directly. Instead, it is constructed from SIGNATURE_NOISE_MESSAGE and server's static public key that are sent during the handshake process
The PUBKEY fields are encoded using only their 32 byte x-coordinate and not with EllSwift. For the purpose of generating and verifying the certificate, the 64 byte EllSwift encoded server_public_key can be decoded to its 32 byte x-coordinate.
Schnorr signature with key prefixing is used3
signature is constructed for
- message
m
, wherem
isHASH
of the serialized fields of theCERTIFICATE
that are marked for signing, i.e.m = SHA-256(version || valid_from || not_valid_after || server_public_key)
- public key
P
that is Certificate Authority
Signature itself is concatenation of an EC point R
and an integer s
(note that each item is serialized as 32 bytes array) for which identity s⋅G = R + HASH(R || P || m)⋅P
holds.
After handshake process is finished, both initiator and responder have CipherState objects for encryption and decryption and after initiator validated server's identity, any subsequent traffic is encrypted and decrypted with EncryptWithAd()
and DecryptWithAd()
methods of the respective CipherState objects with zero-length associated data.
Maximum transport message length (ciphertext) is for noise protocol message 65535 bytes.
Since Stratum Message Frame consists of
- fixed length message header: 6 bytes
- variable length serialized stratum message
Stratum Message header and stratum message payload are processed separately.
- serialize stratum message into a plaintext binary string (payload)
- prepare the frame header for the Stratum message
message_length
is the length of the plaintext payload. - encrypt and concatenate serialized header and payload:
4.
EncryptWithAd([], header)
- 22 bytes 5.EncryptWithAd([], payload)
- variable length encrypted message - concatenate resulting header and payload ciphertext
- Note: The
message_length
(payload_length) in the encrypted Stratum message header always reflects the plaintext payload size. The size of the encrypted payload is implicitly understood to be message_length + MAC size for each block. This simplifies the decryption process and ensures clarity in interpreting frame data.
- read exactly 22 bytes and decrypt into stratum frame or fail
2.The value
frame.message_length
should first be converted to the ciphertext length, and then that amount of data should be read and decrypted into plaintext payload. If decryption fails, the process stops - deserialize plaintext payload into stratum message given by
frame.extension_type
andframe.message_type
or fail
*converting plaintext length to ciphertext length:
#define MAX_CT_LEN 65535
#define MAC_LEN 16
#define MAX_PT_LEN (MAX_CT_LEN - MAC_LEN)
uint pt_len_to_ct_len(uint pt_len) {
uint remainder;
remainder = pt_len % MAX_PT_LEN;
if (remainder > 0) {
remainder += MAC_LEN;
}
return pt_len / MAX_PT_LEN * MAX_CT_LEN + remainder;
}
+--------------------------------------------------+-------------------------------------------------------------------+
| Extended noise header | Encrypted stratum-message payload |
+--------------------------------------------------+-------------------+-------------------+---------------------------+
| Header AEAD ciphertext | Noise block 1 | Noise block 2 | Last Noise block |
| 22 Bytes | 65535 Bytes | 65535 Bytes | 17 - 65535 Bytes |
+----------------------------------------+---------+-----------+-------+-----------+-------+---------------+-----------+
| Encrypted Stratum message Header | MAC | ct_pld_1 | MAC_1 | ct_pld_2 | MAC_2 | ct_pld_rest | MAC_rest |
| 6 Bytes | 16 B | 65519 B | 16 B | 65519 B | 16 B | 1 - 65519 B | 16 Bytes |
+================+==========+============+=========+===========+=======+===========+=======+===============+===========+
| extension_type | msg_type | pld_length | <padd | pt_pld_1 | <padd | pt_pld_2 | <padd | pt_pld_rest | <padding> |
| U16 | U8 | U24 | ing> | 65519 B | ing> | 65519 B | ing> | 1 - 65519 B | |
+----------------+----------+------------+---------+-------------------------------------------------------------------+
The `pld_length` field in the Encrypted Stratum message Header now consistently represents the plaintext length of the payload.
Serialized stratum-v2 body (payload) is split into 65519-byte chunks and encrypted to form 65535-bytes AEAD ciphertexts,
where `ct_pld_N` is the N-th ciphertext block of payload and `pt_pld_N` is the N-th plaintext block of payload.
Downstream nodes that want to use the above outlined security scheme need to have configured the Pool Authority Public Key of the pool that they intend to connect to. It is provided by the target pool and communicated to its users via a trusted channel. At least, it can be published on the pool's public website.
The key can be embedded into the mining URL as part of the path.
Authority Public key is base58-check encoded 32-byte secp256k1 public key (with implicit Y coordinate) prefixed with a LE u16 version prefix, currently [1, 0]
:
[1, 0] | 2 bytes prefix |
---|---|
PUBKEY | 32 bytes authority public key |
URL example:
stratum2+tcp://thepool.com:34254/9bXiEd8boQVhq7WddEcERUL5tyyJVFYdU8th3HfbNXK3Yw6GRXh
raw_ca_public_key = [118, 99, 112, 0, 151, 156, 28, 17, 175, 12, 48, 11, 205, 140, 127, 228, 134, 16, 252, 233, 185, 193, 30, 61, 174, 227, 90, 224, 176, 138, 116, 85]
prefixed_base58check = "9bXiEd8boQVhq7WddEcERUL5tyyJVFYdU8th3HfbNXK3Yw6GRXh"
- https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf
- https://www.secg.org/sec2-v2.pdf
- https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki
- https://tools.ietf.org/html/rfc8439
- https://www.ietf.org/rfc/rfc2104.txt
- https://tools.ietf.org/html/rfc5869
- https://github.com/bitcoin/bips/blob/master/bip-0324.mediawiki