| 105 | } |
| 106 | |
| 107 | void db_bind_secret(struct db_stmt *stmt, int pos, const struct secret *s) |
| 108 | { |
| 109 | assert(sizeof(s->data) == 32); |
| 110 | db_bind_blob(stmt, pos, s->data, sizeof(s->data)); |
| 111 | } |
| 112 | |
| 113 | void db_bind_secret_arr(struct db_stmt *stmt, int col, const struct secret *s) |
| 114 | { |
no test coverage detected