| 176 | } |
| 177 | |
| 178 | static int |
| 179 | SHA384Update_int(void *ctx, const void *buf, u_int len) |
| 180 | { |
| 181 | SHA384_Update(ctx, buf, len); |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | static int |
| 186 | SHA512Update_int(void *ctx, const void *buf, u_int len) |
nothing calls this directly
no test coverage detected