Searched refs:checksum (Results 1 - 25 of 126) sorted by relevance

123456

/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dcrypto-arcfour.c57 * checksum according to section 5. of draft-brezak-win2k-krb-rc4-hmac-03.txt
84 ksign_c.checksum.length = sizeof(ksign_c_data);
85 ksign_c.checksum.data = ksign_c_data;
93 kb.keyvalue = ksign_c.checksum;
149 k1_c.checksum.length = sizeof(k1_c_data);
150 k1_c.checksum.data = k1_c_data;
158 k2_c.checksum.length = sizeof(k2_c_data);
159 k2_c.checksum.data = k2_c_data;
162 kb.keyvalue = k2_c.checksum;
164 cksum.checksum
[all...]
H A Dcrypto-aes.c156 struct _krb5_checksum_type *ct = crypto->et->checksum;
163 ret = krb5_data_alloc(&result.checksum, ct->checksumsize);
169 ret = (*ct->checksum)(context, NULL, in->data, in->length, 0, &result);
171 krb5_data_free(&result.checksum);
175 if (result.checksum.length < crypto->et->blocksize)
184 prfsize = (result.checksum.length / crypto->et->blocksize) * crypto->et->blocksize;
202 result.checksum.data,
214 krb5_data_free(&result.checksum);
382 struct _krb5_checksum_type *ct = crypto->et->checksum;
388 ret = krb5_data_alloc(&result.checksum, c
[all...]
H A Dcrypto-des3.c63 struct _krb5_checksum_type *ct = crypto->et->checksum;
70 ret = krb5_data_alloc(&result.checksum, ct->checksumsize);
76 ret = (*ct->checksum)(context, NULL, in->data, in->length, 0, &result);
78 krb5_data_free(&result.checksum);
82 if (result.checksum.length < crypto->et->blocksize)
91 prfsize = (result.checksum.length / crypto->et->blocksize) * crypto->et->blocksize;
104 EVP_Cipher(&ctx, out->data, result.checksum.data, prfsize);
108 krb5_data_free(&result.checksum);
H A Dcrypto-des-common.c68 unsigned char *p = cksum->checksum.data;
112 EVP_Cipher(&ctx->dctx, tmp, C->checksum.data, 24);
137 if (CCDigest(kCCDigestMD5, data, len, C->checksum.data) != 0)
138 krb5_abortx(context, "md5 checksum failed");
H A Dcrypto.c177 if (CCDigest(kCCDigestSHA1, data, len, C->checksum.data) != 0)
178 krb5_abortx(context, "sha1 checksum failed");
209 (*cm->checksum)(context,
215 key = result->checksum.data;
216 key_len = result->checksum.length;
226 (*cm->checksum)(context, keyblock, ipad, cm->blocksize + len,
228 memcpy(opad + cm->blocksize, result->checksum.data,
229 result->checksum.length);
230 (*cm->checksum)(context, keyblock, opad,
255 N_("checksum typ
[all...]
H A Dmk_safe.c99 s.cksum.checksum.data = NULL;
100 s.cksum.checksum.length = 0;
/macosx-10.10/ruby-106/ruby/lib/rubygems/package/
H A Dtar_test_case.rb36 checksum 8
54 if name == "checksum" then
74 def header(type, fname, dname, length, mode, checksum = nil)
75 checksum ||= " " * 8
84 checksum, # char checksum[8]; 0 padded, octal, null, space
110 checksum = calc_checksum(h)
111 header("5", name, prefix, 0, mode, checksum)
116 checksum = calc_checksum(h)
117 header("0", fname, dname, length, mode, checksum)
[all...]
H A Dtar_header.rb16 # char checksum[8]; # 0 padded, octal, null, space
36 :checksum,
83 'A8' + # checksum
111 :checksum => fields.shift.oct,
136 vals[:checksum] ||= ""
161 @checksum == other.checksum and
185 # Updates the TarHeader's checksum
189 @checksum = oct calculate_checksum(header), 6
198 def header(checksum
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dmd2.h53 unsigned char checksum[16]; member in struct:md2
H A Dmd2.c73 L = m->checksum[15];
75 L = m->checksum[i] ^= subst[p[i] ^ L];
129 memcpy(pad, m->checksum, 16);
/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Ducode.h14 uint32_t checksum; member in struct:intel_ucupdate
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/krb5/
H A D8003.c65 * create a checksum over the chanel bindings in
127 Checksum checksum; local
131 memset(&checksum, 0, sizeof(checksum));
133 cksum.value, cksum.length, &checksum);
137 &checksum, &size, ret);
149 * see rfc1964 (section 1.1.1 (Initial Token), and the checksum value
153 ret = krb5_storage_to_data(sp, &result->checksum);
198 * verify the checksum in `cksum' over `input_chan_bindings'
227 if(cksum->cksumtype != CKSUMTYPE_GSSAPI || cksum->checksum
276 Checksum checksum; local
[all...]
/macosx-10.10/apr-32/apr/apr/tables/
H A Dapr_tables.c302 /* Compute the "checksum" for a key, consisting of the first
304 * an int...this checksum allows us to do a single integer
308 #define COMPUTE_KEY_CHECKSUM(key, checksum) \
312 (checksum) = c; \
313 (checksum) <<= 8; \
316 checksum |= c; \
318 (checksum) <<= 8; \
321 checksum |= c; \
323 (checksum) <<= 8; \
326 checksum |
467 apr_uint32_t checksum; local
498 apr_uint32_t checksum; local
570 apr_uint32_t checksum; local
641 apr_uint32_t checksum; local
695 apr_uint32_t checksum; local
732 apr_uint32_t checksum; local
784 apr_uint32_t checksum; local
804 apr_uint32_t checksum; local
965 apr_uint32_t checksum; local
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DMD5.h55 // checksum has a side effect of resetting the state of the object.
56 WTF_EXPORT_PRIVATE void checksum(Digest&);
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A Dfsck_journal.h56 uint32_t checksum; member in struct:block_list_header
72 int32_t checksum; member in struct:journal_header
82 // we only checksum the original size of the journal_header to remain
/macosx-10.10/rsync-45/rsync/
H A Dtech_report.tex81 a weak ``rolling'' 32-bit checksum (described below) and a strong
82 128-bit MD4 checksum.
88 weak and strong checksum as one of the blocks of $B$. This can be
90 rolling checksum described below.
104 The most important details of the algorithm are the rolling checksum
106 all-offsets checksum search to proceed very quickly. These will be
109 \section{Rolling checksum}
111 The weak rolling checksum used in the rsync algorithm needs to have
112 the property that it is very cheap to calculate the checksum of a
113 buffer $X_2 .. X_{n+1}$ given the checksum o
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/nmea/
H A Dnmea.tcl13 array set ::nmea::nmea [list checksum 1 log {} rate 0]
117 checksum {
118 if {$val == ""} { return $nmea(checksum) }
119 if {![string is bool $val]} { return -code error "checksum must be a boolean value" }
120 set nmea(checksum) $val
155 if {$cksum == "" || !$::nmea::nmea(checksum) || [checksum $line] == $cksum} {
167 proc ::nmea::checksum {line} {
179 puts $nmea(fh) \$$data*[checksum $data]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_package_tar_header.rb37 assert_equal '', @tar_header.checksum, 'checksum'
122 assert_equal '', @tar_header.checksum
126 assert_equal '012467', @tar_header.checksum
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/openct/
H A Dproto-t1.h69 unsigned int (*checksum)(const uint8_t *, size_t, unsigned char *); member in struct:__anon5501
/macosx-10.10/ksh-23/ksh/src/cmd/INIT/
H A Dditto.sh11 # (with md5 checksum b35adb5213ca9657e911e9befb180842) #
52 [c:checksum?Copy if the \btw\b(1) 32x4 checksum mismatches.]
131 typeset checksum='"-"' pax="pax"
145 c) checksum=checksum ;;
163 tw[ntw++]=--expr=\''action:printf("%d\t%d\t%s\t%s\t%s\t%-.1s\t%o\t%s\t%s\n", size, mtime, '$checksum', uid, gid, mode, perm, path, symlink);'\'
/macosx-10.10/emacs-93/emacs/src/
H A Dunexhp9k800.c251 /* Update the checksum */
252 hdr->checksum = calculate_checksum (hdr);
263 /* Calculate the checksum of a SOM header record. */
268 int checksum, i, *ptr;
270 checksum = 0; ptr = (int *) hdr;
273 checksum ^= ptr[i];
275 return (checksum);
267 int checksum, i, *ptr; local
/macosx-10.10/ruby-106/ruby/lib/
H A Dpstore.rb327 @table, checksum, original_data_size = load_data(file, read_only)
334 save_data(checksum, original_data_size, file)
391 # Hash, an MD5 checksum of the data, and the size of the data.
407 checksum = empty_marshal_checksum
411 checksum = Digest::MD5.digest(data)
416 [table, checksum, size]
/macosx-10.10/groff-38/groff/font/devdvi/
H A DTBI9 checksum 1175274390
H A DTI10 checksum -50321606
/macosx-10.10/ksh-23/ksh/lib/package/
H A Dpackage.mk87 checksum = md5 macro
758 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum))
1047 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum))
1051 $(SUM) -x $(checksum) < $(old.new.source) > $(old.new.source:D:B:S=.$(checksum))
1081 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum))
1209 $(SUM) -x $(checksum) <
[all...]

Completed in 208 milliseconds

123456