| 116 | } |
| 117 | |
| 118 | void db_bind_secret(struct db_stmt *stmt, const struct secret *s) |
| 119 | { |
| 120 | assert(sizeof(s->data) == 32); |
| 121 | db_bind_blob(stmt, s->data, sizeof(s->data)); |
| 122 | } |
| 123 | |
| 124 | void db_bind_secret_arr(struct db_stmt *stmt, const struct secret *s) |
| 125 | { |
no test coverage detected