Home
last modified time | relevance | path

Searched refs:CONFOUNDERLENGTH (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/arcfour/
H A Dk5_arcfour.c156 plaintext.length=krb5_roundup(input->length+CONFOUNDERLENGTH,blocksize);
173 ciphertext.length=krb5_roundup(input->length+CONFOUNDERLENGTH,blocksize);
176 confounder.length=CONFOUNDERLENGTH;
289 if (input->length < hashsize + CONFOUNDERLENGTH)
291 if (output->length < input->length - hashsize - CONFOUNDERLENGTH)
430 bcopy(plaintext.data+CONFOUNDERLENGTH, output->data,
431 (plaintext.length-CONFOUNDERLENGTH));
432 output->length=plaintext.length-CONFOUNDERLENGTH;
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Darcfour.h9 #define CONFOUNDERLENGTH 8 macro