Static method to be used inside other methods. Left rotates n by b.
(n, b)
| 21 | |
| 22 | @staticmethod |
| 23 | def rotate(n, b): |
| 24 | """ |
| 25 | Static method to be used inside other methods. Left rotates n by b. |
| 26 | """ |
| 27 | return ((n << b) | (n >> (32 - b))) & 0xFFFFFFFF |
| 28 | |
| 29 | def padding(self): |
| 30 | """ |
no outgoing calls
no test coverage detected