| 104 | } |
| 105 | |
| 106 | static int |
| 107 | ossl_detach(device_t dev) |
| 108 | { |
| 109 | struct ossl_softc *sc; |
| 110 | |
| 111 | sc = device_get_softc(dev); |
| 112 | |
| 113 | crypto_unregister_all(sc->sc_cid); |
| 114 | |
| 115 | return (0); |
| 116 | } |
| 117 | |
| 118 | static struct auth_hash * |
| 119 | ossl_lookup_hash(const struct crypto_session_params *csp) |
nothing calls this directly
no test coverage detected