Lines Matching refs:cipher

194 	    struct digest_cipher *cipher;  member
2567 struct digest_cipher *cipher; local
2592 cipher = available_ciphers1;
2594 cipher = available_ciphers;
2596 while (cipher->name) {
2598 if (stext->requiressf <= cipher->ssf &&
2599 stext->limitssf >= cipher->ssf) {
2606 if(strlen(cipheropts) + strlen(cipher->name) + 1 >=
2614 strcat(cipheropts, cipher->name);
2616 cipher++;
2863 char *cipher = NULL; local
2975 _plug_strdup(sparams->utils, value, &cipher, NULL);
3298 if ((!strcasecmp(qop, "auth-conf")) && (cipher != NULL)) {
3310 if (!strcasecmp(cipher, cptr->name) &&
3566 if (cipher != NULL)
3567 sparams->utils->free (cipher);
3794 struct digest_cipher *cipher; member
3962 oparams->mech_ssf = ctext->cipher->ssf;
3964 nbits = ctext->cipher->n;
3965 text->cipher_enc = ctext->cipher->cipher_enc;
3966 text->cipher_dec = ctext->cipher->cipher_dec;
3967 text->cipher_free = ctext->cipher->cipher_free;
3968 text->cipher_init = ctext->cipher->cipher_init;
4084 if (ctext->cipher != NULL) {
4088 (unsigned char *) ctext->cipher->name,
4337 struct digest_cipher *cipher = available_ciphers1; local
4339 struct digest_cipher *cipher = available_ciphers; local
4347 while (cipher->name) {
4348 if (!strcasecmp(value, cipher->name)) break;
4349 cipher++;
4351 if (cipher->name) {
4352 ciphers |= cipher->flag;
4509 struct digest_cipher *cipher; local
4513 cipher = available_ciphers1;
4515 cipher = available_ciphers;
4517 while (cipher->name) {
4521 if ((limit >= cipher->ssf) && (musthave <= cipher->ssf) &&
4522 (ciphers & cipher->flag) &&
4523 (!ctext->cipher || (cipher->ssf > ctext->cipher->ssf))) {
4524 ctext->cipher = cipher;
4526 cipher++;
4529 if (ctext->cipher) {
4544 if (ctext->cipher == NULL) {
4837 ctext->cipher = text->reauth->e[val].u.c.cipher;
5020 text->reauth->e[val].u.c.cipher = ctext->cipher;
5122 ctext->cipher = NULL;