Lines Matching refs:ALGORITHM
2958 ALGORITHM host-name SEMI |
3003 case ALGORITHM:
3004 if (key -> algorithm) {
3010 key -> algorithm = parse_host_name (cfile);
3011 if (!key -> algorithm) {
3013 "expecting key algorithm name.");
3018 /* If the algorithm name isn't an FQDN, tack on
3020 s = strrchr (key -> algorithm, '.');
3023 s = dmalloc (strlen (key -> algorithm) +
3027 "algorithm");
3030 strcpy (s, key -> algorithm);
3032 dfree (key -> algorithm, MDL);
3033 key -> algorithm = s;
3036 s = dmalloc (strlen (key -> algorithm) + 2, MDL);
3039 key -> algorithm);
3042 strcpy (s, key -> algorithm);
3044 dfree (key -> algorithm, MDL);
3045 key -> algorithm = s;