(byte inch)
| 91 | 0x10171e25, 0x2c333a41, 0x484f565d, 0x646b7279}; |
| 92 | |
| 93 | private byte sm4Sbox(byte inch) { |
| 94 | int i = inch & 0xFF; |
| 95 | byte retVal = SboxTable[i]; |
| 96 | return retVal; |
| 97 | } |
| 98 | |
| 99 | private long sm4Lt(long ka) { |
| 100 | long bb = 0L; |
no outgoing calls
no test coverage detected