Lines Matching refs:cipher

195 	    struct digest_cipher *cipher;  member
2568 struct digest_cipher *cipher; local
2593 cipher = available_ciphers1;
2595 cipher = available_ciphers;
2597 while (cipher->name) {
2599 if (stext->requiressf <= cipher->ssf &&
2600 stext->limitssf >= cipher->ssf) {
2607 if(strlen(cipheropts) + strlen(cipher->name) + 1 >=
2615 strcat(cipheropts, cipher->name);
2617 cipher++;
2864 char *cipher = NULL; local
2976 _plug_strdup(sparams->utils, value, &cipher, NULL);
3299 if ((!strcasecmp(qop, "auth-conf")) && (cipher != NULL)) {
3311 if (!strcasecmp(cipher, cptr->name) &&
3567 if (cipher != NULL)
3568 sparams->utils->free (cipher);
3795 struct digest_cipher *cipher; member
3963 oparams->mech_ssf = ctext->cipher->ssf;
3965 nbits = ctext->cipher->n;
3966 text->cipher_enc = ctext->cipher->cipher_enc;
3967 text->cipher_dec = ctext->cipher->cipher_dec;
3968 text->cipher_free = ctext->cipher->cipher_free;
3969 text->cipher_init = ctext->cipher->cipher_init;
4085 if (ctext->cipher != NULL) {
4089 (unsigned char *) ctext->cipher->name,
4338 struct digest_cipher *cipher = available_ciphers1; local
4340 struct digest_cipher *cipher = available_ciphers; local
4348 while (cipher->name) {
4349 if (!strcasecmp(value, cipher->name)) break;
4350 cipher++;
4352 if (cipher->name) {
4353 ciphers |= cipher->flag;
4510 struct digest_cipher *cipher; local
4514 cipher = available_ciphers1;
4516 cipher = available_ciphers;
4518 while (cipher->name) {
4522 if ((limit >= cipher->ssf) && (musthave <= cipher->ssf) &&
4523 (ciphers & cipher->flag) &&
4524 (!ctext->cipher || (cipher->ssf > ctext->cipher->ssf))) {
4525 ctext->cipher = cipher;
4527 cipher++;
4530 if (ctext->cipher) {
4545 if (ctext->cipher == NULL) {
4838 ctext->cipher = text->reauth->e[val].u.c.cipher;
5021 text->reauth->e[val].u.c.cipher = ctext->cipher;
5124 ctext->cipher = NULL;