SignatureAlgorithm
Digital signature algorithm for bundle verification.
Digital signature algorithm for bundle verification.
Supports multiple signature schemes for cryptographic verification of bundle authenticity.
Type
type SignatureAlgorithm =
| 'ecdsaSecp256R1'
| 'ecdsaSecp384R1'
| 'ed25519'
| 'rsaPkcs1V15'
| 'rsaPss';Examples
import { Updater } from '@wvb/node';
const updater = new Updater(source, remote, {
signatureVerifier: {
algorithm: 'ed25519',
key: {
format: 'spkiPem',
data: publicKeyPem,
},
},
});