Home
last modified time | relevance | path

Searched refs:decrypted_buffer (Results 1 – 25 of 115) sorted by relevance

12345

/dports/games/devilutionX/devilutionX-1.2.1/SourceX/dvlnet/
H A Dpacket.h77 buffer_t decrypted_buffer; variable
165 x.insert(x.begin(), decrypted_buffer.begin(), decrypted_buffer.end()); in process_element()
166 decrypted_buffer.resize(0); in process_element()
172 if (decrypted_buffer.size() < sizeof(T)) in process_element()
174 std::memcpy(&x, decrypted_buffer.data(), sizeof(T)); in process_element()
175 decrypted_buffer.erase(decrypted_buffer.begin(), in process_element()
176 decrypted_buffer.begin() + sizeof(T)); in process_element()
H A Dpacket.cpp162 decrypted_buffer.resize(pktlen); in decrypt()
163 if (crypto_secretbox_open_easy(decrypted_buffer.data(), in decrypt()
176 decrypted_buffer = encrypted_buffer; in decrypt()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/cdm/
H A Dcenc_decryptor_unittest.cc157 auto decrypted_buffer = DecryptCencBuffer(*encrypted_buffer, *key_); in TEST_F() local
158 EXPECT_EQ(encrypted_buffer->timestamp(), decrypted_buffer->timestamp()); in TEST_F()
159 EXPECT_EQ(encrypted_buffer->duration(), decrypted_buffer->duration()); in TEST_F()
161 decrypted_buffer->end_of_stream()); in TEST_F()
162 EXPECT_EQ(encrypted_buffer->is_key_frame(), decrypted_buffer->is_key_frame()); in TEST_F()
164 decrypted_buffer->side_data_size()); in TEST_F()
168 decrypted_buffer->side_data(), in TEST_F()
169 decrypted_buffer->side_data() + encrypted_buffer->side_data_size())); in TEST_F()
H A Dcbcs_decryptor_unittest.cc173 auto decrypted_buffer = DecryptCbcsBuffer(*encrypted_buffer, *key_); in TEST_F() local
174 EXPECT_EQ(encrypted_buffer->timestamp(), decrypted_buffer->timestamp()); in TEST_F()
175 EXPECT_EQ(encrypted_buffer->duration(), decrypted_buffer->duration()); in TEST_F()
177 decrypted_buffer->end_of_stream()); in TEST_F()
178 EXPECT_EQ(encrypted_buffer->is_key_frame(), decrypted_buffer->is_key_frame()); in TEST_F()
180 decrypted_buffer->side_data_size()); in TEST_F()
184 decrypted_buffer->side_data(), in TEST_F()
185 decrypted_buffer->side_data() + encrypted_buffer->side_data_size())); in TEST_F()
H A Dcdm_wrapper.h121 cdm::DecryptedBlock* decrypted_buffer) = 0;
242 cdm::DecryptedBlock* decrypted_buffer) override { in Decrypt() argument
243 return cdm_->Decrypt(encrypted_buffer, decrypted_buffer); in Decrypt()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cdm/
H A Dcenc_decryptor_unittest.cc157 auto decrypted_buffer = DecryptCencBuffer(*encrypted_buffer, *key_); in TEST_F() local
158 EXPECT_EQ(encrypted_buffer->timestamp(), decrypted_buffer->timestamp()); in TEST_F()
159 EXPECT_EQ(encrypted_buffer->duration(), decrypted_buffer->duration()); in TEST_F()
161 decrypted_buffer->end_of_stream()); in TEST_F()
162 EXPECT_EQ(encrypted_buffer->is_key_frame(), decrypted_buffer->is_key_frame()); in TEST_F()
164 decrypted_buffer->side_data_size()); in TEST_F()
168 decrypted_buffer->side_data(), in TEST_F()
169 decrypted_buffer->side_data() + encrypted_buffer->side_data_size())); in TEST_F()
H A Dcbcs_decryptor_unittest.cc173 auto decrypted_buffer = DecryptCbcsBuffer(*encrypted_buffer, *key_); in TEST_F() local
174 EXPECT_EQ(encrypted_buffer->timestamp(), decrypted_buffer->timestamp()); in TEST_F()
175 EXPECT_EQ(encrypted_buffer->duration(), decrypted_buffer->duration()); in TEST_F()
177 decrypted_buffer->end_of_stream()); in TEST_F()
178 EXPECT_EQ(encrypted_buffer->is_key_frame(), decrypted_buffer->is_key_frame()); in TEST_F()
180 decrypted_buffer->side_data_size()); in TEST_F()
184 decrypted_buffer->side_data(), in TEST_F()
185 decrypted_buffer->side_data() + encrypted_buffer->side_data_size())); in TEST_F()
H A Dcdm_wrapper.h121 cdm::DecryptedBlock* decrypted_buffer) = 0;
242 cdm::DecryptedBlock* decrypted_buffer) override { in Decrypt() argument
243 return cdm_->Decrypt(encrypted_buffer, decrypted_buffer); in Decrypt()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/components/cdm_factory_daemon/
H A Dcontent_decryption_module_adapter_unittest.cc475 scoped_refptr<media::DecoderBuffer> decrypted_buffer = in TEST_F() local
479 MatchesDecoderBuffer(decrypted_buffer))); in TEST_F()
504 scoped_refptr<media::DecoderBuffer> decrypted_buffer = in TEST_F() local
506 decrypted_buffer->set_is_key_frame(true); in TEST_F()
510 MatchesDecoderBuffer(decrypted_buffer))); in TEST_F()
595 scoped_refptr<media::DecoderBuffer> decrypted_buffer = in TEST_F() local
597 decrypted_buffer->set_decrypt_config(nullptr); in TEST_F()
625 scoped_refptr<media::DecoderBuffer> decrypted_buffer = in TEST_F() local
627 decrypted_buffer->set_is_key_frame(true); in TEST_F()
664 scoped_refptr<media::DecoderBuffer> decrypted_buffer = in TEST_F() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/filters/
H A Ddecrypting_demuxer_stream.cc254 scoped_refptr<DecoderBuffer> decrypted_buffer) { in OnBufferDecrypted() argument
272 DCHECK_EQ(status == Decryptor::kSuccess, decrypted_buffer.get() != nullptr); in OnBufferDecrypted()
314 decrypted_buffer->set_is_key_frame( in OnBufferDecrypted()
316 decrypted_buffer->set_duration(pending_buffer_to_decrypt_->duration()); in OnBufferDecrypted()
320 std::move(read_cb_).Run(kOk, std::move(decrypted_buffer)); in OnBufferDecrypted()
H A Ddecrypting_demuxer_stream_unittest.cc165 scoped_refptr<DecoderBuffer> decrypted_buffer) { in ReadAndExpectBufferReadyWith() argument
168 else if (decrypted_buffer->end_of_stream()) in ReadAndExpectBufferReadyWith()
171 EXPECT_CALL(*this, BufferReady(status, decrypted_buffer)); in ReadAndExpectBufferReadyWith()
188 scoped_refptr<DecoderBuffer> decrypted_buffer; in EnterClearReadingState() local
190 .WillOnce(SaveArg<1>(&decrypted_buffer)); in EnterClearReadingState()
195 EXPECT_FALSE(decrypted_buffer->decrypt_config()); in EnterClearReadingState()
H A Ddecrypting_demuxer_stream.h128 scoped_refptr<DecoderBuffer> decrypted_buffer);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/filters/
H A Ddecrypting_demuxer_stream_unittest.cc163 scoped_refptr<DecoderBuffer> decrypted_buffer) { in ReadAndExpectBufferReadyWith() argument
166 else if (decrypted_buffer->end_of_stream()) in ReadAndExpectBufferReadyWith()
169 EXPECT_CALL(*this, BufferReady(status, decrypted_buffer)); in ReadAndExpectBufferReadyWith()
186 scoped_refptr<DecoderBuffer> decrypted_buffer; in EnterClearReadingState() local
188 .WillOnce(SaveArg<1>(&decrypted_buffer)); in EnterClearReadingState()
193 EXPECT_FALSE(decrypted_buffer->decrypt_config()); in EnterClearReadingState()
H A Ddecrypting_demuxer_stream.cc256 scoped_refptr<DecoderBuffer> decrypted_buffer) { in OnBufferDecrypted() argument
274 DCHECK_EQ(status == Decryptor::kSuccess, decrypted_buffer.get() != nullptr); in OnBufferDecrypted()
316 decrypted_buffer->set_is_key_frame(true); in OnBufferDecrypted()
320 std::move(read_cb_).Run(kOk, std::move(decrypted_buffer)); in OnBufferDecrypted()
H A Ddecrypting_demuxer_stream.h126 scoped_refptr<DecoderBuffer> decrypted_buffer);
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/router/src/harness/src/keyring/
H A Dmaster_key_file.cc216 std::vector<char> decrypted_buffer(encrypted.size()); in get() local
221 reinterpret_cast<unsigned char *>(decrypted_buffer.data()), in get()
232 &decrypted_buffer[0], in get()
H A Dkeyring_memory.cc253 std::vector<char> decrypted_buffer(buffer_size); in parse() local
258 reinterpret_cast<unsigned char *>(decrypted_buffer.data()), in parse()
265 ::parse(decrypted_buffer.data(), static_cast<std::size_t>(decrypted_size), in parse()
/dports/net/liblinphone/linphone-3.12.0/coreapi/
H A Dchat_file_transfer.c371 uint8_t *decrypted_buffer = NULL; in on_recv_body() local
393 decrypted_buffer = (uint8_t *)ms_malloc0(size); in on_recv_body()
399 … = cb_process_downloading_file(imee, msg, offset, (const uint8_t *)buffer, size, decrypted_buffer); in on_recv_body()
401 memcpy(buffer, decrypted_buffer, size); in on_recv_body()
405 ms_free(decrypted_buffer); in on_recv_body()
H A Dlime.h217 …oneChatMessage *msg, size_t offset, const uint8_t *buffer, size_t size, uint8_t *decrypted_buffer);
/dports/multimedia/kodi-addon-inputstream.adaptive/inputstream.adaptive-19.0.1-Matrix/wvdecrypter/cdm/media/cdm/
H A Dcdm_adapter.cc382 cdm::DecryptedBlock* decrypted_buffer) in Decrypt() argument
390 active_buffer_ = decrypted_buffer->DecryptedBuffer(); in Decrypt()
394 ret = cdm9_->Decrypt(ToInputBuffer_1(encrypted_buffer), decrypted_buffer); in Decrypt()
396 ret = cdm10_->Decrypt(encrypted_buffer, decrypted_buffer); in Decrypt()
400 ret = cdm11_->Decrypt(tmp, decrypted_buffer); in Decrypt()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/parquet/
H A Dthrift_internal.h393 std::shared_ptr<ResizableBuffer> decrypted_buffer =
399 decryptor->Decrypt(cipher_buf, 0, decrypted_buffer->mutable_data());
404 DeserializeThriftMsg(decrypted_buffer->data(), &decrypted_buffer_len,
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/parquet/
H A Dthrift_internal.h397 std::shared_ptr<ResizableBuffer> decrypted_buffer =
403 decryptor->Decrypt(cipher_buf, 0, decrypted_buffer->mutable_data());
408 DeserializeThriftMsg(decrypted_buffer->data(), &decrypted_buffer_len,
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/parquet/
H A Dthrift_internal.h419 std::shared_ptr<ResizableBuffer> decrypted_buffer =
425 decryptor->Decrypt(cipher_buf, 0, decrypted_buffer->mutable_data());
430 DeserializeThriftMsg(decrypted_buffer->data(), &decrypted_buffer_len,
/dports/graphics/aseprite/aseprite-1.2.9/third_party/libarchive/libarchive/
H A Darchive_read_support_format_zip.c192 unsigned char *decrypted_buffer; member
1272 zip->decrypted_buffer, dec_size); in zip_read_data_none()
1279 zip->decrypted_buffer, &dsize); in zip_read_data_none()
1282 buff = (const char *)zip->decrypted_buffer; in zip_read_data_none()
1368 (zip->decrypted_buffer + zip->decrypted_buffer_size) in zip_read_data_deflate()
1446 zip->decrypted_ptr = zip->decrypted_buffer; in zip_read_data_deflate()
1708 if (zip->decrypted_buffer == NULL) { in zip_alloc_decryption_buffer()
1710 zip->decrypted_buffer = malloc(bs); in zip_alloc_decryption_buffer()
1711 if (zip->decrypted_buffer == NULL) { in zip_alloc_decryption_buffer()
1717 zip->decrypted_ptr = zip->decrypted_buffer; in zip_alloc_decryption_buffer()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/storage/innobase/xtrabackup/src/libarchive/libarchive/
H A Darchive_read_support_format_zip.c192 unsigned char *decrypted_buffer; member
1248 zip->decrypted_buffer, dec_size); in zip_read_data_none()
1255 zip->decrypted_buffer, &dsize); in zip_read_data_none()
1258 buff = (const char *)zip->decrypted_buffer; in zip_read_data_none()
1344 (zip->decrypted_buffer + zip->decrypted_buffer_size) in zip_read_data_deflate()
1422 zip->decrypted_ptr = zip->decrypted_buffer; in zip_read_data_deflate()
1684 if (zip->decrypted_buffer == NULL) { in zip_alloc_decryption_buffer()
1686 zip->decrypted_buffer = malloc(bs); in zip_alloc_decryption_buffer()
1687 if (zip->decrypted_buffer == NULL) { in zip_alloc_decryption_buffer()
1693 zip->decrypted_ptr = zip->decrypted_buffer; in zip_alloc_decryption_buffer()
[all …]

12345