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.cpp124 int nKeyBits = 0; in _LoadCryptInfo() local
126 nKeyBits = pDefFilter->GetInteger(FX_BSTRC("Length"), 0); in _LoadCryptInfo()
127 if (nKeyBits == 0) { in _LoadCryptInfo()
128 nKeyBits = pEncryptDict->GetInteger(FX_BSTRC("Length"), 128); in _LoadCryptInfo()
131 nKeyBits = pEncryptDict->GetInteger(FX_BSTRC("Length"), 256); in _LoadCryptInfo()
133 if (nKeyBits < 40) { in _LoadCryptInfo()
134 nKeyBits *= 8; in _LoadCryptInfo()
136 keylen = nKeyBits / 8; in _LoadCryptInfo()