Static method to be used inside other methods. Left rotates n by b.
(n, b)
| 45 | |
| 46 | @staticmethod |
| 47 | def rotate(n, b): |
| 48 | """ |
| 49 | Static method to be used inside other methods. Left rotates n by b. |
| 50 | """ |
| 51 | return ((n << b) | (n >> (32 - b))) & 0xffffffff |
| 52 | |
| 53 | def padding(self): |
| 54 | """ |
no outgoing calls
no test coverage detected