| 120 | class QuipSigner { |
| 121 | public: |
| 122 | QuipSigner(const std::array<uint8_t, 32> &quantum_secret_raw) |
| 123 | : wots_(keccak256) { |
| 124 | // Store the raw quantum secret, hashing happens in recoverKeyPair |
| 125 | quantum_secret_ = quantum_secret_raw; |
| 126 | } |
| 127 | |
| 128 | // Generate a NEW keypair for a given vaultId using a random public seed |
| 129 | // This is used for creating the NEXT keypair during transfers |
nothing calls this directly
no outgoing calls
no test coverage detected