Deserializes a public/private key pair containing base64 strings back to raw ArrayBuffers.
Used for loading OMEMO key bundles into the cryptographic runtime.
Parameters
keyPair: {privKey:string;pubKey:string}
The base64 serialized key pair containing public and private keys.
privKey: string
Private key as a base64 string.
pubKey: string
Public key as a base64 string.
Returns {privKey:ArrayBuffer;pubKey:ArrayBuffer}
The deserialized key pair containing raw ArrayBuffer properties.
Deserializes a public/private key pair containing base64 strings back to raw ArrayBuffers. Used for loading OMEMO key bundles into the cryptographic runtime.