| 8542 | } |
| 8543 | |
| 8544 | const struct enc_xform * |
| 8545 | enc_algorithm_lookup(int alg) |
| 8546 | { |
| 8547 | int i; |
| 8548 | |
| 8549 | for (i = 0; i < nitems(supported_ealgs); i++) |
| 8550 | if (alg == supported_ealgs[i].sadb_alg) |
| 8551 | return (supported_ealgs[i].xform); |
| 8552 | return (NULL); |
| 8553 | } |
| 8554 | |
| 8555 | const struct auth_hash * |
| 8556 | auth_algorithm_lookup(int alg) |
no outgoing calls
no test coverage detected