parseEncryptedPayload(encrypted: string,prefix: string,label: string): { iv: Uint8Array; ciphertext: Uint8Array; }
Parse a prefixed encrypted payload into IV and ciphertext bytes. Validates the prefix and separator; throws on invalid format.
{ iv: Uint8Array; ciphertext: Uint8Array; }