Lines Matching refs:data

50  * verifier or optionally to provide data integrity and/or privacy.
52 * Once the context is complete, the client and server enter a normal data
169 * separate from the data, the size is always the same: 35 bytes (0x23).
171 * size of the token + the encrypted data that follows. So the size
619 * Since XDR data is always 32-bit aligned, it
649 /* Add null XDR pad if the ASN.1 token misaligned the data */
2373 /* Now compute the checksum over the results data */
2385 * Since XDR data is always 32-bit aligned, it
2398 /* Now compute the checksum over the results data */
2413 /* Add null XDR pad if the ASN.1 token misaligned the data */
2888 vm_offset_t data;
2895 data = CAST_DOWN(vm_offset_t, map_data);
2896 bcopy((void *) data, out, len);
2897 vm_deallocate(ipc_kernel_map, data, len);
2976 * checksum of the alg + plaintext data.
3182 * going until the end of data in the current mbuf is reached.
3210 * byte offset, then start MD5 on the mbuf data until
3222 /* At or beyond offset - checksum data */
3239 * going until the end of data in the current mbuf is reached.
3289 * Encrypt or decrypt data in an mbuf chain with des-cbc.
3309 * byte offset, then start encrypting the mbuf data until
3322 /* At or beyond offset - encrypt data */
3360 * Encrypt or decrypt data in an NFS mbuf chain with des-cbc.
3400 gss_digest_Update(GSS_DIGEST_CTX *ctx, void *data, size_t len)
3403 case NFS_GSS_1DES: MD5_DESCBC_Update(&ctx->m_ctx, data, len);
3405 case NFS_GSS_3DES: HMAC_SHA1_DES3KD_Update(&ctx->h_ctx, data, len);
3485 hexdump(const char *msg, void *data, size_t len)
3488 u_char *d = data;