![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include "core/fdrm/fx_crypt.h"#include <utility>#include "core/fxcrt/byteorder.h"#include "core/fxcrt/compiler_specific.h"#include "core/fxcrt/stl_util.h"Go to the source code of this file.
Macros | |
| #define | S(x, n) |
| #define | P(a, b, c, d, k, s, t) |
| #define | F(x, y, z) |
| #define | F(x, y, z) |
| #define | F(x, y, z) |
| #define | F(x, y, z) |
Functions | |
| void | CRYPT_ArcFourSetup (CRYPT_rc4_context *context, pdfium::span< const uint8_t > key) |
| void | CRYPT_ArcFourCrypt (CRYPT_rc4_context *context, pdfium::span< uint8_t > data) |
| void | CRYPT_ArcFourCryptBlock (pdfium::span< uint8_t > data, pdfium::span< const uint8_t > key) |
| CRYPT_md5_context | CRYPT_MD5Start () |
| void | CRYPT_MD5Update (CRYPT_md5_context *context, pdfium::span< const uint8_t > data) |
| void | CRYPT_MD5Finish (CRYPT_md5_context *context, pdfium::span< uint8_t, 16 > digest) |
| void | CRYPT_MD5Generate (pdfium::span< const uint8_t > data, pdfium::span< uint8_t, 16 > digest) |
| void CRYPT_ArcFourCrypt | ( | CRYPT_rc4_context * | context, |
| pdfium::span< uint8_t > | data ) |
Definition at line 146 of file fx_crypt.cpp.
| void CRYPT_ArcFourCryptBlock | ( | pdfium::span< uint8_t > | data, |
| pdfium::span< const uint8_t > | key ) |
Definition at line 157 of file fx_crypt.cpp.
| void CRYPT_ArcFourSetup | ( | CRYPT_rc4_context * | context, |
| pdfium::span< const uint8_t > | key ) |
Definition at line 131 of file fx_crypt.cpp.
References CRYPT_rc4_context::kPermutationLength, CRYPT_rc4_context::x, and CRYPT_rc4_context::y.
| void CRYPT_MD5Finish | ( | CRYPT_md5_context * | context, |
| pdfium::span< uint8_t, 16 > | digest ) |
Definition at line 203 of file fx_crypt.cpp.
| void CRYPT_MD5Generate | ( | pdfium::span< const uint8_t > | data, |
| pdfium::span< uint8_t, 16 > | digest ) |
Definition at line 219 of file fx_crypt.cpp.
References CRYPT_MD5Start().
| CRYPT_md5_context CRYPT_MD5Start | ( | ) |
Definition at line 164 of file fx_crypt.cpp.
Referenced by CRYPT_MD5Generate(), pdfium::CFDETextOutTest::GetBitmapChecksum(), EmbedderTest::HashBitmap(), CPDF_SecurityHandler::OnCreate(), TEST(), TEST(), and TEST().
| void CRYPT_MD5Update | ( | CRYPT_md5_context * | context, |
| pdfium::span< const uint8_t > | data ) |
Definition at line 175 of file fx_crypt.cpp.
References CRYPT_md5_context::buffer.