Home
last modified time | relevance | path

Searched refs:nKeyBits (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_encrypt.cpp123 int nKeyBits = 0; in _LoadCryptInfo() local
125 nKeyBits = pDefFilter->GetInteger(FX_BSTRC("Length"), 0); in _LoadCryptInfo()
126 if (nKeyBits == 0) { in _LoadCryptInfo()
127 nKeyBits = pEncryptDict->GetInteger(FX_BSTRC("Length"), 128); in _LoadCryptInfo()
130 nKeyBits = pEncryptDict->GetInteger(FX_BSTRC("Length"), 256); in _LoadCryptInfo()
132 if (nKeyBits < 40) { in _LoadCryptInfo()
133 nKeyBits *= 8; in _LoadCryptInfo()
135 keylen = nKeyBits / 8; in _LoadCryptInfo()