Get the two key A and key B parts from the key.
(key)
| 70 | |
| 71 | |
| 72 | def getKeyPartsFromKey(key): |
| 73 | """Get the two key A and key B parts from the key.""" |
| 74 | keyA = key // len(SYMBOLS) |
| 75 | keyB = key % len(SYMBOLS) |
| 76 | return (keyA, keyB) |
| 77 | |
| 78 | |
| 79 | def checkKey(key, mode): |
no outgoing calls
no test coverage detected