Lines Matching refs:checksum
113 * create a checksum over the chanel bindings in
124 Checksum *result)
129 * see rfc1964 (section 1.1.1 (Initial Token), and the checksum value
133 result->checksum.length = 24 + 4 + fwd_data->length;
135 result->checksum.length = 24;
136 result->checksum.data = malloc (result->checksum.length);
137 if (result->checksum.data == NULL) {
142 p = result->checksum.data;
169 * verify the checksum in `cksum' over `input_chan_bindings'
177 const Checksum *cksum,
188 if(cksum->cksumtype != CKSUMTYPE_GSSAPI || cksum->checksum.length < 24) {
193 p = cksum->checksum.data;
219 if (cksum->checksum.length > 24 && (*flags & GSS_C_DELEG_FLAG)) {
220 if(cksum->checksum.length < 28) {
234 if(cksum->checksum.length < 28 + fwd_data->length) {