|
| 1 | +// Copyright (c) 2021 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 <crypto/rfc8439.h> |
| 6 | + |
| 7 | +#include <crypto/chacha20.h> |
| 8 | +#include <crypto/common.h> |
| 9 | + |
| 10 | +#include <cstring> |
| 11 | + |
| 12 | +#ifndef RFC8439_TIMINGSAFE_BCMP |
| 13 | +#define RFC8439_TIMINGSAFE_BCMP |
| 14 | + |
| 15 | +int rfc8439_timingsafe_bcmp(const unsigned char* b1, const unsigned char* b2, size_t n) |
| 16 | +{ |
| 17 | + const unsigned char *p1 = b1, *p2 = b2; |
| 18 | + int ret = 0; |
| 19 | + |
| 20 | + for (; n > 0; n--) |
| 21 | + ret |= *p1++ ^ *p2++; |
| 22 | + return (ret != 0); |
| 23 | +} |
| 24 | + |
| 25 | +#endif // RFC8439_TIMINGSAFE_BCMP |
| 26 | + |
| 27 | +inline size_t padded16_size(size_t len) |
| 28 | +{ |
| 29 | + return (len % 16 == 0) ? len : (len / 16 + 1) * 16; |
| 30 | +} |
| 31 | + |
| 32 | +void ComputeRFC8439Tag(const std::array<std::byte, POLY1305_KEYLEN>& polykey, |
| 33 | + Span<const std::byte> aad, Span<const std::byte> ciphertext, |
| 34 | + Span<std::byte> tag_out) |
| 35 | +{ |
| 36 | + assert(tag_out.size() == POLY1305_TAGLEN); |
| 37 | + std::vector<std::byte> bytes_to_authenticate; |
| 38 | + auto padded_aad_size = padded16_size(aad.size()); |
| 39 | + auto padded_ciphertext_size = padded16_size(ciphertext.size()); |
| 40 | + bytes_to_authenticate.resize(padded_aad_size + padded_ciphertext_size + 16, std::byte{0x00}); |
| 41 | + std::copy(aad.begin(), aad.end(), bytes_to_authenticate.begin()); |
| 42 | + std::copy(ciphertext.begin(), ciphertext.end(), bytes_to_authenticate.begin() + padded_aad_size); |
| 43 | + WriteLE64(reinterpret_cast<unsigned char*>(bytes_to_authenticate.data()) + padded_aad_size + padded_ciphertext_size, aad.size()); |
| 44 | + WriteLE64(reinterpret_cast<unsigned char*>(bytes_to_authenticate.data()) + padded_aad_size + padded_ciphertext_size + 8, ciphertext.size()); |
| 45 | + |
| 46 | + poly1305_auth(reinterpret_cast<unsigned char*>(tag_out.data()), |
| 47 | + reinterpret_cast<const unsigned char*>(bytes_to_authenticate.data()), |
| 48 | + bytes_to_authenticate.size(), |
| 49 | + reinterpret_cast<const unsigned char*>(polykey.data())); |
| 50 | +} |
| 51 | + |
| 52 | +std::array<std::byte, POLY1305_KEYLEN> GetPoly1305Key(ChaCha20& c20) |
| 53 | +{ |
| 54 | + c20.SeekRFC8439(0); |
| 55 | + std::array<std::byte, POLY1305_KEYLEN> polykey; |
| 56 | + c20.Keystream(reinterpret_cast<unsigned char*>(polykey.data()), POLY1305_KEYLEN); |
| 57 | + return polykey; |
| 58 | +} |
| 59 | + |
| 60 | +void RFC8439Crypt(ChaCha20& c20, const Span<const std::byte> in_bytes, Span<std::byte> out_bytes) |
| 61 | +{ |
| 62 | + assert(in_bytes.size() <= out_bytes.size()); |
| 63 | + c20.SeekRFC8439(1); |
| 64 | + c20.Crypt(reinterpret_cast<const unsigned char*>(in_bytes.data()), reinterpret_cast<unsigned char*>(out_bytes.data()), in_bytes.size()); |
| 65 | +} |
| 66 | + |
| 67 | +void RFC8439Encrypt(const Span<const std::byte> aad, const Span<const std::byte> key, const std::array<std::byte, 12>& nonce, const Span<const std::byte> plaintext, Span<std::byte> output) |
| 68 | +{ |
| 69 | + assert(key.size() == RFC8439_KEYLEN); |
| 70 | + assert(output.size() >= plaintext.size() + POLY1305_TAGLEN); |
| 71 | + |
| 72 | + ChaCha20 c20{reinterpret_cast<const unsigned char*>(key.data())}; |
| 73 | + c20.SetRFC8439Nonce(nonce); |
| 74 | + |
| 75 | + std::array<std::byte, POLY1305_KEYLEN> polykey{GetPoly1305Key(c20)}; |
| 76 | + |
| 77 | + RFC8439Crypt(c20, plaintext, output); |
| 78 | + ComputeRFC8439Tag(polykey, aad, |
| 79 | + {output.data(), plaintext.size()}, |
| 80 | + {output.data() + plaintext.size(), POLY1305_TAGLEN}); |
| 81 | +} |
| 82 | + |
| 83 | +bool RFC8439Decrypt(const Span<const std::byte> aad, const Span<const std::byte> key, const std::array<std::byte, 12>& nonce, const Span<const std::byte> input, Span<std::byte> plaintext) |
| 84 | +{ |
| 85 | + assert(key.size() == RFC8439_KEYLEN); |
| 86 | + assert(plaintext.size() >= input.size() - POLY1305_TAGLEN); |
| 87 | + |
| 88 | + ChaCha20 c20{reinterpret_cast<const unsigned char*>(key.data())}; |
| 89 | + c20.SetRFC8439Nonce(nonce); |
| 90 | + |
| 91 | + std::array<std::byte, POLY1305_KEYLEN> polykey{GetPoly1305Key(c20)}; |
| 92 | + std::array<std::byte, POLY1305_TAGLEN> tag; |
| 93 | + |
| 94 | + ComputeRFC8439Tag(polykey, aad, {input.data(), input.size() - POLY1305_TAGLEN}, tag); |
| 95 | + |
| 96 | + if (rfc8439_timingsafe_bcmp(reinterpret_cast<const unsigned char*>(input.data() + input.size() - POLY1305_TAGLEN), |
| 97 | + reinterpret_cast<const unsigned char*>(tag.data()), POLY1305_TAGLEN) != 0) { |
| 98 | + return false; |
| 99 | + } |
| 100 | + |
| 101 | + RFC8439Crypt(c20, {input.data(), input.size() - POLY1305_TAGLEN}, plaintext); |
| 102 | + return true; |
| 103 | +} |
0 commit comments