aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/botan/src/lib/stream/ctr
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/3rdparty/botan/src/lib/stream/ctr')
-rw-r--r--src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.cpp242
-rw-r--r--src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.h63
-rw-r--r--src/libs/3rdparty/botan/src/lib/stream/ctr/info.txt7
3 files changed, 0 insertions, 312 deletions
diff --git a/src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.cpp b/src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.cpp
deleted file mode 100644
index 22cfade9b1..0000000000
--- a/src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.cpp
+++ /dev/null
@@ -1,242 +0,0 @@
-/*
-* Counter mode
-* (C) 1999-2011,2014 Jack Lloyd
-*
-* Botan is released under the Simplified BSD License (see license.txt)
-*/
-
-#include <botan/ctr.h>
-#include <botan/exceptn.h>
-#include <botan/loadstor.h>
-
-namespace Botan {
-
-CTR_BE::CTR_BE(BlockCipher* ciph) :
- m_cipher(ciph),
- m_block_size(m_cipher->block_size()),
- m_ctr_size(m_block_size),
- m_ctr_blocks(m_cipher->parallel_bytes() / m_block_size),
- m_counter(m_cipher->parallel_bytes()),
- m_pad(m_counter.size()),
- m_pad_pos(0)
- {
- }
-
-CTR_BE::CTR_BE(BlockCipher* cipher, size_t ctr_size) :
- m_cipher(cipher),
- m_block_size(m_cipher->block_size()),
- m_ctr_size(ctr_size),
- m_ctr_blocks(m_cipher->parallel_bytes() / m_block_size),
- m_counter(m_cipher->parallel_bytes()),
- m_pad(m_counter.size()),
- m_pad_pos(0)
- {
- BOTAN_ARG_CHECK(m_ctr_size >= 4 && m_ctr_size <= m_block_size,
- "Invalid CTR-BE counter size");
- }
-
-void CTR_BE::clear()
- {
- m_cipher->clear();
- zeroise(m_pad);
- zeroise(m_counter);
- zap(m_iv);
- m_pad_pos = 0;
- }
-
-size_t CTR_BE::default_iv_length() const
- {
- return m_block_size;
- }
-
-bool CTR_BE::valid_iv_length(size_t iv_len) const
- {
- return (iv_len <= m_block_size);
- }
-
-Key_Length_Specification CTR_BE::key_spec() const
- {
- return m_cipher->key_spec();
- }
-
-CTR_BE* CTR_BE::clone() const
- {
- return new CTR_BE(m_cipher->clone(), m_ctr_size);
- }
-
-void CTR_BE::key_schedule(const uint8_t key[], size_t key_len)
- {
- m_cipher->set_key(key, key_len);
-
- // Set a default all-zeros IV
- set_iv(nullptr, 0);
- }
-
-std::string CTR_BE::name() const
- {
- if(m_ctr_size == m_block_size)
- return ("CTR-BE(" + m_cipher->name() + ")");
- else
- return ("CTR-BE(" + m_cipher->name() + "," + std::to_string(m_ctr_size) + ")");
-
- }
-
-void CTR_BE::cipher(const uint8_t in[], uint8_t out[], size_t length)
- {
- verify_key_set(m_iv.empty() == false);
-
- const uint8_t* pad_bits = &m_pad[0];
- const size_t pad_size = m_pad.size();
-
- if(m_pad_pos > 0)
- {
- const size_t avail = pad_size - m_pad_pos;
- const size_t take = std::min(length, avail);
- xor_buf(out, in, pad_bits + m_pad_pos, take);
- length -= take;
- in += take;
- out += take;
- m_pad_pos += take;
-
- if(take == avail)
- {
- add_counter(m_ctr_blocks);
- m_cipher->encrypt_n(m_counter.data(), m_pad.data(), m_ctr_blocks);
- m_pad_pos = 0;
- }
- }
-
- while(length >= pad_size)
- {
- xor_buf(out, in, pad_bits, pad_size);
- length -= pad_size;
- in += pad_size;
- out += pad_size;
-
- add_counter(m_ctr_blocks);
- m_cipher->encrypt_n(m_counter.data(), m_pad.data(), m_ctr_blocks);
- }
-
- xor_buf(out, in, pad_bits, length);
- m_pad_pos += length;
- }
-
-void CTR_BE::set_iv(const uint8_t iv[], size_t iv_len)
- {
- if(!valid_iv_length(iv_len))
- throw Invalid_IV_Length(name(), iv_len);
-
- m_iv.resize(m_block_size);
- zeroise(m_iv);
- buffer_insert(m_iv, 0, iv, iv_len);
-
- seek(0);
- }
-
-void CTR_BE::add_counter(const uint64_t counter)
- {
- const size_t ctr_size = m_ctr_size;
- const size_t ctr_blocks = m_ctr_blocks;
- const size_t BS = m_block_size;
-
- if(ctr_size == 4)
- {
- size_t off = (BS - 4);
- uint32_t low32 = counter + load_be<uint32_t>(&m_counter[off], 0);
-
- for(size_t i = 0; i != ctr_blocks; ++i)
- {
- store_be(low32, &m_counter[off]);
- off += BS;
- low32 += 1;
- }
- }
- else if(ctr_size == 8)
- {
- size_t off = (BS - 8);
- uint64_t low64 = counter + load_be<uint64_t>(&m_counter[off], 0);
-
- for(size_t i = 0; i != ctr_blocks; ++i)
- {
- store_be(low64, &m_counter[off]);
- off += BS;
- low64 += 1;
- }
- }
- else if(ctr_size == 16)
- {
- size_t off = (BS - 16);
- uint64_t b0 = load_be<uint64_t>(&m_counter[off], 0);
- uint64_t b1 = load_be<uint64_t>(&m_counter[off], 1);
- b1 += counter;
- b0 += (b1 < counter) ? 1 : 0; // carry
-
- for(size_t i = 0; i != ctr_blocks; ++i)
- {
- store_be(b0, &m_counter[off]);
- store_be(b1, &m_counter[off+8]);
- off += BS;
- b1 += 1;
- b0 += (b1 == 0); // carry
- }
- }
- else
- {
- for(size_t i = 0; i != ctr_blocks; ++i)
- {
- uint64_t local_counter = counter;
- uint16_t carry = static_cast<uint8_t>(local_counter);
- for(size_t j = 0; (carry || local_counter) && j != ctr_size; ++j)
- {
- const size_t off = i*BS + (BS-1-j);
- const uint16_t cnt = static_cast<uint16_t>(m_counter[off]) + carry;
- m_counter[off] = static_cast<uint8_t>(cnt);
- local_counter = (local_counter >> 8);
- carry = (cnt >> 8) + static_cast<uint8_t>(local_counter);
- }
- }
- }
- }
-
-void CTR_BE::seek(uint64_t offset)
- {
- verify_key_set(m_iv.empty() == false);
-
- const uint64_t base_counter = m_ctr_blocks * (offset / m_counter.size());
-
- zeroise(m_counter);
- buffer_insert(m_counter, 0, m_iv);
-
- const size_t BS = m_block_size;
-
- // Set m_counter blocks to IV, IV + 1, ... IV + n
-
- if(m_ctr_size == 4 && BS >= 8)
- {
- const uint32_t low32 = load_be<uint32_t>(&m_counter[BS-4], 0);
- for(size_t i = 1; i != m_ctr_blocks; ++i)
- {
- copy_mem(&m_counter[i*BS], &m_counter[0], BS);
- uint32_t c = low32 + i;
- store_be(c, &m_counter[(BS-4)+i*BS]);
- }
- }
- else
- {
- for(size_t i = 1; i != m_ctr_blocks; ++i)
- {
- buffer_insert(m_counter, i*BS, &m_counter[(i-1)*BS], BS);
-
- for(size_t j = 0; j != m_ctr_size; ++j)
- if(++m_counter[i*BS + (BS - 1 - j)])
- break;
- }
- }
-
- if(base_counter > 0)
- add_counter(base_counter);
-
- m_cipher->encrypt_n(m_counter.data(), m_pad.data(), m_ctr_blocks);
- m_pad_pos = offset % m_counter.size();
- }
-}
diff --git a/src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.h b/src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.h
deleted file mode 100644
index 79911b2feb..0000000000
--- a/src/libs/3rdparty/botan/src/lib/stream/ctr/ctr.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
-* CTR-BE Mode
-* (C) 1999-2007 Jack Lloyd
-*
-* Botan is released under the Simplified BSD License (see license.txt)
-*/
-
-#ifndef BOTAN_CTR_BE_H_
-#define BOTAN_CTR_BE_H_
-
-#include <botan/block_cipher.h>
-#include <botan/stream_cipher.h>
-
-namespace Botan {
-
-/**
-* CTR-BE (Counter mode, big-endian)
-*/
-class BOTAN_PUBLIC_API(2,0) CTR_BE final : public StreamCipher
- {
- public:
- void cipher(const uint8_t in[], uint8_t out[], size_t length) override;
-
- void set_iv(const uint8_t iv[], size_t iv_len) override;
-
- size_t default_iv_length() const override;
-
- bool valid_iv_length(size_t iv_len) const override;
-
- Key_Length_Specification key_spec() const override;
-
- std::string name() const override;
-
- CTR_BE* clone() const override;
-
- void clear() override;
-
- /**
- * @param cipher the block cipher to use
- */
- explicit CTR_BE(BlockCipher* cipher);
-
- CTR_BE(BlockCipher* cipher, size_t ctr_size);
-
- void seek(uint64_t offset) override;
- private:
- void key_schedule(const uint8_t key[], size_t key_len) override;
- void add_counter(const uint64_t counter);
-
- std::unique_ptr<BlockCipher> m_cipher;
-
- const size_t m_block_size;
- const size_t m_ctr_size;
- const size_t m_ctr_blocks;
-
- secure_vector<uint8_t> m_counter, m_pad;
- std::vector<uint8_t> m_iv;
- size_t m_pad_pos;
- };
-
-}
-
-#endif
diff --git a/src/libs/3rdparty/botan/src/lib/stream/ctr/info.txt b/src/libs/3rdparty/botan/src/lib/stream/ctr/info.txt
deleted file mode 100644
index 270ceecf8b..0000000000
--- a/src/libs/3rdparty/botan/src/lib/stream/ctr/info.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-<defines>
-CTR_BE -> 20131128
-</defines>
-
-<requires>
-block
-</requires>