HomeSort by relevance Sort by last modified time
    Searched refs:checksum (Results 176 - 200 of 393) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeWrapEngine.java 55 // checksum digest
151 // Compute the CMS Key Checksum, (section 5.6.1), call this CKS.
292 // Calculate a CMS Key Checksum, (section 5.6.1), over the WK and compare
297 "Checksum inside ciphertext is corrupted");
305 * Some key wrap algorithms make use of the Key Checksum defined
310 * - Use the first 8 octets of this hash as the checksum value.
315 * @return the CMS checksum.
335 * @param checksum the checksum.
340 byte[] checksum)
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/engines/
DESedeWrapEngine.java 57 // checksum digest
153 // Compute the CMS Key Checksum, (section 5.6.1), call this CKS.
294 // Calculate a CMS Key Checksum, (section 5.6.1), over the WK and compare
299 "Checksum inside ciphertext is corrupted");
307 * Some key wrap algorithms make use of the Key Checksum defined
312 * - Use the first 8 octets of this hash as the checksum value.
317 * @return the CMS checksum.
337 * @param checksum the checksum.
342 byte[] checksum)
    [all...]
  /external/curl/src/
tool_metalink.c 582 * Check checksum of file denoted by filename. The expected hash value
589 * Checksum didn't match.
667 if(mlfile->checksum == NULL) {
672 rv = check_hash(filename, mlfile->checksum->digest_def,
673 mlfile->checksum->digest, config->errors);
746 f->checksum = NULL;
756 f->checksum =
762 if(f->checksum) {
866 if(!mlfile->checksum) {
972 delete_metalink_checksum(mlfile->checksum);
    [all...]
  /external/freetype/include/freetype/internal/
fttrace.h 37 FT_TRACE_DEF( checksum ) /* bitmap checksum (ftobjs.c) */
  /external/pdfium/xfa/fwl/
cfx_barcode.cpp 91 bool CFX_Barcode::SetPrintChecksum(bool checksum) {
102 ->SetPrintChecksum(checksum),
  /external/scapy/scapy/contrib/
icmp_extensions.py 54 ck = checksum(p)
104 # validate checksum
106 if checksum(ieh.build()):
igmp.py 67 """Called implicitly before a packet is sent to compute and place IGMP checksum.
76 ck = checksum(p)
  /external/toybox/toys/net/
ping.c 217 ih->checksum = 0;
218 ih->checksum = pingchksum((void *)toybuf, TT.s+sizeof(*ih));
  /external/u-boot/arch/x86/include/asm/
acpi_table.h 23 u8 checksum; /* Checksum of the first 20 bytes */ member in struct:acpi_rsdp
29 u8 ext_checksum; /* Checksum of the whole table */
38 volatile u8 checksum; /* To make sum of entire table == 0 */ member in struct:acpi_table_header
  /external/u-boot/drivers/net/
sandbox.c 143 icmpr->checksum = 0;
144 icmpr->checksum = compute_ip_checksum(icmpr,
  /external/vboot_reference/firmware/lib/
vboot_audio.c 125 if (mysum != hdr->checksum) {
127 mysum, hdr->checksum));
  /external/sfntly/cpp/src/sfntly/
font.cc 135 fos->WriteULong((int32_t)((*record)->checksum()));
502 int64_t checksum = is->ReadULong(); local
505 HeaderPtr table = new Header(tag, checksum, offset, length);
525 int64_t checksum = fd->ReadULong(table_offset + Offset::kTableCheckSum); local
528 HeaderPtr table = new Header(tag, checksum, offset, length);
  /external/stressapptest/src/
worker.h 345 AdlerChecksum *checksum,
351 AdlerChecksum *checksum,
356 AdlerChecksum *checksum,
  /external/u-boot/common/
edid.c 35 u8 checksum = 0; local
39 checksum += edid_block[i];
41 return (checksum == 0) ? 0 : -EINVAL;
  /bionic/libc/kernel/uapi/linux/
edd.h 147 __u8 checksum; member in struct:edd_device_params
  /cts/apps/CtsVerifier/assets/scripts/power_monitors/
monsoon.py 387 """ Pack a struct (without length or checksum) and send it. """
390 checksum = (data_len + sum(struct.unpack("B" * len(data), data))) % 256
391 out = struct.pack("B", data_len) + data + struct.pack("B", checksum)
396 """ Read a single data record as a string (without length or checksum). """
409 checksum = (data_len + sum(struct.unpack("B" * len(body), body))) % 256
410 if result[-1] != struct.pack("B", checksum):
411 self.log( "Invalid checksum from serial port" )
  /device/google/contexthub/util/stm32_flash/
spi.c 35 buffer[length] = checksum(handle, buffer, length);
stm32_bl.c 22 * checksum a sequence of bytes.
26 uint8_t checksum(__attribute__((unused)) handle_t *handle, uint8_t *bytes, int length) function
  /external/google-breakpad/src/processor/
synth_minidump.h 261 uint32_t checksum = 0,
  /external/icu/icu4c/source/samples/layout/
sfnt.h 33 le_uint32 checksum; member in struct:DirectoryEntry
  /external/icu/icu4c/source/test/letest/
FontObject.h 26 le_uint32 checksum; member in struct:DirectoryEntry
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.h 30 le_uint32 checksum; member in struct:DirectoryEntry
  /external/kernel-headers/original/uapi/linux/
edd.h 170 __u8 checksum; member in struct:edd_device_params
  /external/pdfium/core/fxge/
cfx_fontmapper.cpp 757 uint32_t checksum = 0; local
759 checksum += pBuffer[i];
762 ttc_size, checksum, ttc_size - font_size, &pFontData);
766 face = m_pFontMgr->AddCachedTTCFace(ttc_size, checksum, pFontData, ttc_size,
  /external/pdfium/fxjs/xfa/
cjx_barcode.cpp 21 void CJX_Barcode::checksum(CFXJSE_Value* pValue, function in class:CJX_Barcode

Completed in 925 milliseconds

1 2 3 4 5 6 78 91011>>