Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler.cpp246 int nKeyBits = 0; in LoadCryptInfo() local
248 nKeyBits = pDefFilter->GetIntegerFor("Length", 0); in LoadCryptInfo()
249 if (nKeyBits == 0) { in LoadCryptInfo()
250 nKeyBits = pEncryptDict->GetIntegerFor("Length", 128); in LoadCryptInfo()
253 nKeyBits = pEncryptDict->GetIntegerFor("Length", 256); in LoadCryptInfo()
255 if (nKeyBits < 0) in LoadCryptInfo()
258 if (nKeyBits < 40) { in LoadCryptInfo()
259 nKeyBits *= 8; in LoadCryptInfo()
261 keylen = nKeyBits / 8; in LoadCryptInfo()