@sudoplatform/sudo-email
    Preparing search index...

    Interface EmailAddressPublicKey

    The Sudo Platform SDK representation of email address public information. Depicts the email address and public key related to an email address resource.

    EmailAddressPublicKey

    interface EmailAddressPublicKey {
        algorithm: string;
        keyFormat: PublicKeyFormat;
        publicKey: string;
    }
    Index

    Properties

    algorithm: string

    The encryption algorithm associated with this public key.

    keyFormat: PublicKeyFormat

    The format of the public key. This property specifies the structure of the key, such as RSAPublicKey for PKCS#1 RSA keys or SPKI for X.509 Subject Public Key Info encoded keys.

    publicKey: string

    The raw value of the public key containing the actual cryptographic public key data.