| 8553 | } |
| 8554 | |
| 8555 | const struct auth_hash * |
| 8556 | auth_algorithm_lookup(int alg) |
| 8557 | { |
| 8558 | int i; |
| 8559 | |
| 8560 | for (i = 0; i < nitems(supported_aalgs); i++) |
| 8561 | if (alg == supported_aalgs[i].sadb_alg) |
| 8562 | return (supported_aalgs[i].xform); |
| 8563 | return (NULL); |
| 8564 | } |
| 8565 | |
| 8566 | const struct comp_algo * |
| 8567 | comp_algorithm_lookup(int alg) |
no outgoing calls
no test coverage detected