Searched refs:CTRCipherStream (Results 1 – 2 of 2) sorted by relevance
| /rocksdb-6.9/include/rocksdb/ |
| D | env_encryption.h | 102 class CTRCipherStream final : public BlockAccessCipherStream { 109 CTRCipherStream(BlockCipher& c, const char* iv, uint64_t initialCounter) in CTRCipherStream() function 111 virtual ~CTRCipherStream(){}; in ~CTRCipherStream()
|
| /rocksdb-6.9/env/ |
| D | env_encryption.cc | 805 void CTRCipherStream::AllocateScratch(std::string& scratch) { in AllocateScratch() 812 Status CTRCipherStream::EncryptBlock(uint64_t blockIndex, char *data, char* scratch) { in EncryptBlock() 834 Status CTRCipherStream::DecryptBlock(uint64_t blockIndex, char *data, char* scratch) { in DecryptBlock() 877 CTRCipherStream cipherStream(cipher_, prefixIV.data(), initialCounter); in CreateNewPrefix() 914 CTRCipherStream cipherStream(cipher_, iv.data(), initialCounter); in CreateCipherStream() 931 new CTRCipherStream(cipher_, iv.data(), initialCounter)); in CreateCipherStreamFromPrefix()
|