(props)
| 8 | |
| 9 | export default class MasterPassword extends Component { |
| 10 | constructor(props) { |
| 11 | super(props); |
| 12 | this.state = { fingerprint: null }; |
| 13 | this.delayedCalcFingerprint = debounce(this.calcFingerprint, 500); |
| 14 | } |
| 15 | |
| 16 | calcFakedFingerprint = () => { |
| 17 | let hmacSha256 = ""; |
nothing calls this directly
no outgoing calls
no test coverage detected