parsePublicKey abstract method

PublicKey? parsePublicKey(
  1. Object? key
)

Parses raw public key data into a PublicKey instance.

Converts raw public key representations (map) into a strongly-typed public key object for verification/encryption operations.

@param key - Raw public key data to parse

@return Parsed public key (null if parsing fails)

Implementation

PublicKey? parsePublicKey(Object? key);