Skip to main content

Ed25519VerifyingKeyHex

Type Alias Ed25519VerifyingKeyHex 

Source
pub type Ed25519VerifyingKeyHex = B16<ByteArray<32>>;
Expand description

An ed25519 public key, hex-encoded.

The constellation’s phc_jwt_key: the ed half of PHC’s VerifyingKeyBytes, kept on the wire so pre-v3.4.0 hubs (predating the hybrid migration) can still verify the classical EdDSA HHPP.

TODO: remove once all hubs are on >=v3.4.0 (see scripts/check-hubs.py).

Aliased Type§

pub struct Ed25519VerifyingKeyHex {
    inner: ByteArray<32>,
    phantom: PhantomData<(B16Encoding,)>,
}

Fields§

§inner: ByteArray<32>§phantom: PhantomData<(B16Encoding,)>