This repository was archived by the owner on Jun 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
feat: Generate + store station_id keypair and pass to Zinnia via env var #406
Closed
PatrickNercessian
wants to merge
16
commits into
CheckerNetwork:main
from
PatrickNercessian:station_id
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
96a7864
Generate and store station_id Ed25119 keypair and pass to Zinnia via …
PatrickNercessian 2ca1bcd
Rename cryptoOperations.js to station-id.js
PatrickNercessian 0b65da7
Removed unsupported keyUsages for Ed25119
PatrickNercessian 57cbb75
Moved getStationId call earlier in station command for readability
PatrickNercessian f8a9770
Syntax changes to pass standard.js checks
PatrickNercessian 1ee0323
Added Station ID to telemetry points
PatrickNercessian 1cb9bb3
Merge branch 'main' into station_id
bajtos acb21fe
Merge branch 'main' into station_id
bajtos 8ac0b34
deps: fix package-lock.json
bajtos bb90265
Merge branch 'main' into station_id
bajtos 51ea303
Merge branch 'main' into station_id
bajtos 58d2457
fix: import of webcrypto.subtle in Node.js 18.x
bajtos 9c88ea2
fix: typings for retval of `subtle.generateKey()`
bajtos 0fe59a9
ci: setup libsecret on Ubuntu
bajtos 69f314f
Added dbus launch command to GH workflow
PatrickNercessian a5ecf1e
Merge branch 'main' into station_id
bajtos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| import keytar from 'keytar' | ||
| import { subtle } from 'node:crypto' | ||
|
|
||
| const SERVICE_NAME = 'filecoin-station-core' | ||
|
|
||
| export async function getStationId () { | ||
| const storedKeys = await keytar.getPassword(SERVICE_NAME, 'station_id') | ||
| if (storedKeys) { | ||
| return JSON.parse(storedKeys) | ||
| } | ||
|
|
||
| const keyPair = /** @type {import('node:crypto').webcrypto.CryptoKeyPair} */( | ||
| /** @type {unknown} */( | ||
| await subtle.generateKey({ name: 'ED25519' }, true, ['sign', 'verify']) | ||
| ) | ||
| ) | ||
| const publicKey = await subtle.exportKey('spki', keyPair.publicKey) | ||
| const privateKey = await subtle.exportKey('pkcs8', keyPair.privateKey) | ||
|
|
||
| const keysToStore = JSON.stringify({ publicKey, privateKey }) | ||
| await keytar.setPassword(SERVICE_NAME, 'station_id', keysToStore) | ||
|
|
||
| return { publicKey, privateKey } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.