| 4 | #include "int.h" |
| 5 | |
| 6 | void Commit(octetStream& comm,octetStream& open,const octetStream& message, int send_player) |
| 7 | { |
| 8 | open.store(send_player); |
| 9 | open.append(message.get_data(), message.get_length()); |
| 10 | open.append_random(SEED_SIZE); |
| 11 | comm = open.hash(); |
| 12 | } |
| 13 | |
| 14 | bool Open(octetStream& message,const octetStream& comm, octetStream& open, int send_player) |
| 15 | { |
no test coverage detected