Concatenate two byte arrays. */
| 32 | |
| 33 | /** Concatenate two byte arrays. */ |
| 34 | data Cat(data x, const data& y) |
| 35 | { |
| 36 | x.insert(x.end(), y.begin(), y.end()); |
| 37 | return x; |
| 38 | } |
| 39 | |
| 40 | /** This function will compute what 6 5-bit values to XOR into the last 6 input values, in order to |
| 41 | * make the checksum 0. These 6 values are packed together in a single 30-bit integer. The higher |
no test coverage detected