| 169 | } |
| 170 | |
| 171 | static int |
| 172 | SHA256Update_int(void *ctx, const void *buf, u_int len) |
| 173 | { |
| 174 | SHA256_Update(ctx, buf, len); |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | static int |
| 179 | SHA384Update_int(void *ctx, const void *buf, u_int len) |
nothing calls this directly
no test coverage detected