| 123 | } |
| 124 | |
| 125 | void RemotePassword::computeScramble() |
| 126 | { |
| 127 | hash.reset(); |
| 128 | dumpIt("computeScramble: clientPublicKey", clientPublicKey); |
| 129 | hash.processStrippedInt(clientPublicKey); |
| 130 | dumpIt("computeScramble: serverPublicKey", serverPublicKey); |
| 131 | hash.processStrippedInt(serverPublicKey); |
| 132 | hash.getInt(scramble); |
| 133 | } |
| 134 | |
| 135 | void RemotePassword::clientSessionKey(UCharBuffer& sessionKey, const char* account, |
| 136 | const char* salt, const char* password, |
nothing calls this directly
no test coverage detected