Permutate this block with the specified table
(self, table, block)
| 452 | return bytes(result) |
| 453 | |
| 454 | def __permutate(self, table, block): |
| 455 | """Permutate this block with the specified table""" |
| 456 | return [block[i] for i in table] |
| 457 | |
| 458 | # Transform the secret key, so that it is ready for data processing |
| 459 | # Create the 16 subkeys, K[1] - K[16] |
no outgoing calls
no test coverage detected