Lines Matching refs:digest
460 byte[] digest = null;
462 digest = getPackageContentsDigest();
466 String digestHex = (digest != null)
467 ? IntegralToString.bytesToHexString(digest, false)
572 * Gets the digest of the contents of the package being installed.
580 * Gets the SHA-256 digest of the contents of the specified file.
583 MessageDigest digest;
585 digest = MessageDigest.getInstance("SHA-256");
596 digest.update(buf, 0, chunkSize);
601 return digest.digest();