Lines Matching refs:cipher_
72 …CryptoStreamBuf cryptoStream(*putRequest.Body(), cipher_, material.ContentKey(), material.ContentI… in PutObjectSecurely()
85 if (material.CipherName() != cipher_->Name()) { in GetObjectSecurely()
88 "expect " << cipher_->Name() << ", " in GetObjectSecurely()
100 int64_t blkSize = static_cast<int64_t>(cipher_->BlockSize()); in GetObjectSecurely()
106 iv = cipher_->IncCTRCounter(iv, static_cast<uint64_t>(blockOfNum)); in GetObjectSecurely()
116 …cryptoStream = std::make_shared<CryptoStreamBuf>(*content, cipher_, material.ContentKey(), iv, sta… in GetObjectSecurely()
189 auto blockNum = fileOffset / static_cast<int64_t>(cipher_->BlockSize()); in UploadPartSecurely()
190 …auto iv = cipher_->IncCTRCounter(ctx.ContentMaterial().ContentIV(), static_cast<uint64_t>(blockNum… in UploadPartSecurely()
191 CryptoStreamBuf cryptoStream(*uRequest.Body(), cipher_, ctx.ContentMaterial().ContentKey(), iv); in UploadPartSecurely()
292 cipher_ = SymmetricCipher::CreateAES256_CTRImpl(); in initEncryptionCipher()
293 content.setCipherName(cipher_->Name()); in initEncryptionCipher()
307 cipher_ = SymmetricCipher::CreateAES256_CTRImpl(); in initDecryptionCipher()