Home
last modified time | relevance | path

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

/system/security/keystore/
Dkeystore.cpp620 size_t digestedLength = ((dataLength + AES_BLOCK_SIZE - 1) in writeBlob() local
623 size_t encryptedLength = digestedLength + MD5_DIGEST_LENGTH; in writeBlob()
627 memset(mBlob.value + mBlob.length, 0, digestedLength - dataLength); in writeBlob()
632 MD5(mBlob.digested, digestedLength, mBlob.digest); in writeBlob()
698 ssize_t digestedLength; in readBlob() local
706 digestedLength = encryptedLength - MD5_DIGEST_LENGTH; in readBlob()
708 MD5(mBlob.digested, digestedLength, computedDigest); in readBlob()
713 digestedLength = encryptedLength; in readBlob()
716 ssize_t maxValueLength = digestedLength - sizeof(mBlob.length); in readBlob()