Searched refs:checksum (Results 51 - 75 of 284) sorted by relevance

1234567891011>>

/freebsd-10.3-release/crypto/heimdal/lib/krb5/
H A Dpac.c79 * HMAC-MD5 checksum over any key (needed for the PAC routines)
99 ret = krb5_data_alloc (&result->checksum, 16);
108 krb5_data_free(&result->checksum);
459 cksum.checksum.length =
461 cksum.checksum.data = malloc(cksum.checksum.length);
462 if (cksum.checksum.data == NULL) {
466 ret = krb5_storage_read(sp, cksum.checksum.data, cksum.checksum.length);
467 if (ret != (int)cksum.checksum
[all...]
H A Dkrb5-v4compat.h120 uint32_t checksum; /* Data checksum (opt) */ member in struct:_krb5_krb_auth_data
H A Drd_safe.c51 safe->cksum.checksum.data = NULL;
52 safe->cksum.checksum.length = 0;
/freebsd-10.3-release/contrib/subversion/subversion/include/private/
H A Dsvn_editor.h484 /** The kind of the checksum to be used throughout the #svn_editor_t APIs.
533 const svn_checksum_t *checksum,
579 const svn_checksum_t *checksum,
901 * The file's contents are specified in @a contents which has a checksum
902 * matching @a checksum. Both values must be non-NULL.
923 const svn_checksum_t *checksum,
1007 * the file, and its checksum must match @a checksum (which must also
1008 * be non-NULL). If @a contents is NULL, then @a checksum must also
1012 * pass NULL for @a props, @a checksum, an
[all...]
/freebsd-10.3-release/include/rpc/
H A Dauth_kerb.h70 unsigned long checksum; /* Data checksum (opt) */ member in struct:authkerb_clnt_cred
/freebsd-10.3-release/sys/boot/uboot/lib/
H A Dapi_public.h76 uint32_t checksum; /* checksum of this sig struct */ member in struct:api_signature
/freebsd-10.3-release/sys/i386/include/
H A Dsmapi.h42 u_int8_t checksum; member in struct:smapi_bios_header
/freebsd-10.3-release/sys/dev/ixgb/
H A Dixgb_ee.h101 uint16_t checksum; member in struct:ixgb_ee_map_type
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzio_checksum.h38 * Signature for checksum functions.
48 /* ZIO embedded checksum */
59 * Information about each checksum function.
62 /* checksum function for each byteorder */
102 extern void zio_checksum_compute(zio_t *zio, enum zio_checksum checksum,
H A Ddsl_scan.h133 void dsl_scan_ddt_entry(dsl_scan_t *scn, enum zio_checksum checksum,
/freebsd-10.3-release/sys/amd64/include/pc/
H A Dbios.h73 uint8_t checksum; member in struct:smbios_eps
/freebsd-10.3-release/usr.sbin/makefs/cd9660/
H A Dcd9660_eltorito.c241 int16_t checksum; local
258 /* Calculate checksum */
259 checksum = 0;
260 cd9660_721(0, ve->checksum);
263 checksum += (int16_t)csptr[i];
264 checksum += 256 * (int16_t)csptr[i + 1];
266 checksum = -checksum;
267 cd9660_721(checksum, ve->checksum);
[all...]
/freebsd-10.3-release/lib/librpcsec_gss/
H A Drpcsec_gss.c273 gss_buffer_desc signbuf, checksum; local
304 checksum.value = verf->oa_base;
305 checksum.length = verf->oa_length;
308 &checksum, &qop_state);
572 gss_buffer_desc rpcbuf, checksum; local
585 * creds together in a buffer so that we can create a checksum
629 &rpcbuf, &checksum);
642 verf.oa_base = checksum.value;
643 verf.oa_length = checksum.length;
646 gss_release_buffer(&min_stat, &checksum);
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_repos/
H A Dreplay.c304 svn_checksum_t *checksum;
333 SVN_ERR(svn_fs_file_checksum(&checksum, svn_checksum_md5, target_root,
336 svn_checksum_to_cstring(checksum, pool),
762 svn_checksum_t *checksum;
763 SVN_ERR(svn_fs_file_checksum(&checksum, svn_checksum_md5,
766 hex_digest = svn_checksum_to_cstring(checksum, pool);
790 svn_checksum_t *checksum;
791 SVN_ERR(svn_fs_file_checksum(&checksum, svn_checksum_md5, root, edit_path,
794 svn_checksum_to_cstring(checksum, pool),
1159 svn_checksum_t *checksum;
301 svn_checksum_t *checksum; local
759 svn_checksum_t *checksum; local
787 svn_checksum_t *checksum; local
1154 svn_checksum_t *checksum; local
1351 svn_checksum_t *checksum; local
1446 svn_checksum_t *checksum = NULL; local
[all...]
/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_lzop.c89 * compressed size(4 bytes) and the checksum of uncompressed data(4 bytes)
131 /* Header checksum 4 bytes */
296 uint32_t checksum; local
313 /* Overwrite header checksum with calculated value. */
314 checksum = lzo_adler32(1, data->compressed + HEADER_VERSION,
316 archive_be32enc(&data->compressed[HEADER_H_CHECKSUM], checksum);
328 uint32_t checksum; local
366 /* Store the checksum of the uncompressed data. */
367 checksum = lzo_adler32(1, data->uncompressed, usize);
368 archive_be32enc(p + header_bytes + 8, checksum);
[all...]
/freebsd-10.3-release/usr.sbin/uefisign/
H A Dpe.c297 * The PE checksum algorithm is undocumented; this code is mostly based on
298 * http://forum.sysinternals.com/optional-header-checksum-calculation_topic24214.html
304 * Note that most software does not care about the checksum at all; perhaps
316 range_check(x, x->x_checksum_off, x->x_checksum_len, "PE checksum");
322 * Don't checksum the checksum. The +2 is because the checksum
368 printf("subsystem %d, checksum 0x%x, %d data directories\n",
376 printf("checksum 0x%x at offset %zd, len %zd\n",
381 warnx("invalid PE+ checksum; i
519 uint32_t checksum; local
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_wc/
H A Dentries.c67 svn_checksum_t *checksum; member in struct:db_node_t
213 const svn_checksum_t **checksum,
235 checksum,
260 checksum,
388 const svn_checksum_t *checksum;
413 &checksum,
828 &checksum,
868 if (checksum)
871 if (checksum->kind != svn_checksum_md5)
872 SVN_ERR(svn_wc__db_pristine_get_md5(&checksum, d
209 get_info_for_deleted(svn_wc_entry_t *entry, svn_node_kind_t *kind, const char **repos_relpath, const svn_checksum_t **checksum, svn_wc__db_lock_t **lock, svn_wc__db_t *db, const char *entry_abspath, const svn_wc_entry_t *parent_entry, svn_boolean_t have_base, svn_boolean_t have_more_work, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
387 const svn_checksum_t *checksum; local
[all...]
/freebsd-10.3-release/sys/dev/mxge/
H A Dmxge_mcp.h57 uint16_t checksum; member in struct:mcp_slot
69 uint16_t checksum; member in struct:mcp_slot_8
/freebsd-10.3-release/sys/x86/include/
H A Dmptable.h47 u_char checksum; member in struct:MPFPS
63 u_char checksum; member in struct:MPCTH
/freebsd-10.3-release/sys/dev/sfxge/common/
H A Dsiena_flash.h74 efx_dword_t checksum; member in struct:blob_hdr_s
115 efx_word_t checksum; /* of whole header area + firmware image */ member in struct:siena_mc_boot_hdr_s
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Drep-cache.c255 svn_checksum_t *checksum,
267 if (checksum->kind != svn_checksum_sha1)
274 svn_checksum_to_cstring(checksum, pool)));
280 (*rep)->sha1_checksum = svn_checksum_dup(checksum, pool);
350 _("Representation key for checksum '%%s' exists "
367 checksum AND failed to read an existing checksum. Do we need
251 svn_fs_fs__get_rep_reference(representation_t **rep, svn_fs_t *fs, svn_checksum_t *checksum, apr_pool_t *pool) argument
/freebsd-10.3-release/contrib/tcpdump/
H A Dappletalk.h39 u_int16_t checksum; member in struct:atDDP
/freebsd-10.3-release/crypto/openssl/crypto/krb5/
H A Dkrb5_asn.h146 * checksum[1] OCTET STRING
151 ASN1_OCTET_STRING *checksum; member in struct:krb5_checksum_st
/freebsd-10.3-release/usr.bin/mkimg/
H A Dvhd.c94 uint32_t checksum; member in struct:vhd_footer
240 be32enc(&footer->checksum, vhd_checksum(footer, sizeof(*footer)));
263 uint32_t checksum; member in struct:vhd_dyn_header
319 be32enc(&header.checksum, vhd_checksum(&header, sizeof(header)));
/freebsd-10.3-release/usr.sbin/bsdinstall/scripts/
H A Djail109 bsdinstall checksum || error "Distribution checksum failed"

Completed in 241 milliseconds

1234567891011>>