2022-02-10 14:42:17 -05:00
|
|
|
import React, {useState, useEffect} from 'react'
|
|
|
|
import useBooleanState from 'use-boolean-state'
|
|
|
|
import useComputedState from 'use-computed-state'
|
|
|
|
import {
|
|
|
|
getPublicKey,
|
|
|
|
getEventHash,
|
|
|
|
serializeEvent,
|
|
|
|
verifySignature,
|
|
|
|
signEvent
|
|
|
|
} from 'nostr-tools'
|
2022-02-09 17:40:45 -05:00
|
|
|
|
|
|
|
import Item from '../components/item'
|
|
|
|
|
|
|
|
export default function EventSigning({value}) {
|
2022-02-10 14:42:17 -05:00
|
|
|
let [privateKey, setPrivateKey] = useState(
|
|
|
|
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
|
|
|
|
)
|
|
|
|
let [isValidSignature, signatureGood, signatureBad] = useBooleanState(false)
|
|
|
|
let privateKeyIsValid = useComputedState(
|
|
|
|
() => privateKey.match(/[a-f0-9]{64}/),
|
|
|
|
[privateKey]
|
|
|
|
)
|
|
|
|
let publicKey = useComputedState(
|
|
|
|
() => (privateKeyIsValid ? getPublicKey(privateKey) : null),
|
|
|
|
[privateKeyIsValid]
|
|
|
|
)
|
|
|
|
let signature = useComputedState(async () => {
|
|
|
|
evt.pubkey = publicKey
|
|
|
|
return await signEvent(evt, privateKey)
|
|
|
|
}, [value, privateKey])
|
|
|
|
|
2022-02-09 17:40:45 -05:00
|
|
|
let evt = JSON.parse(value)
|
|
|
|
|
2022-02-10 14:42:17 -05:00
|
|
|
useEffect(() => {
|
|
|
|
verifySignature(evt)
|
|
|
|
.then(ok => (ok ? signatureGood() : signatureBad()))
|
|
|
|
.catch(signatureBad)
|
|
|
|
}, [value])
|
|
|
|
|
2022-02-09 17:40:45 -05:00
|
|
|
return (
|
|
|
|
<>
|
2022-02-10 14:42:17 -05:00
|
|
|
<Item
|
|
|
|
label="serialized event"
|
|
|
|
hint="according to nip-01 signature algorithm"
|
|
|
|
>
|
|
|
|
{serializeEvent(evt)}
|
|
|
|
</Item>
|
|
|
|
<Item label="event id" hint="sha256 hash of serialized event">
|
2022-02-09 17:40:45 -05:00
|
|
|
{getEventHash(evt)}
|
|
|
|
</Item>
|
2022-02-10 14:42:17 -05:00
|
|
|
{evt.sig ? (
|
|
|
|
<Item label="signature valid">{isValidSignature.toString()}</Item>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<Item
|
|
|
|
label="private key"
|
|
|
|
hint="paste any private key here (32 bytes hex-encoded)"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
value={privateKey}
|
|
|
|
onChange={e => setPrivateKey(e.target.value.toLowerCase())}
|
|
|
|
/>{' '}
|
|
|
|
{privateKeyIsValid ? 'valid' : 'invalid'}
|
|
|
|
</Item>
|
|
|
|
<Item label="public key">{publicKey}</Item>
|
|
|
|
<Item label="signature">{privateKeyIsValid ? signature : ''}</Item>
|
|
|
|
</>
|
|
|
|
)}
|
2022-02-09 17:40:45 -05:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
EventSigning.match = value => {
|
|
|
|
try {
|
|
|
|
let evt = JSON.parse(value)
|
|
|
|
return evt.kind && evt.content && evt.tags
|
|
|
|
} catch (err) {
|
|
|
|
/**/
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|