Variable encryptionEnvelopeSchemaConst
encryptionEnvelopeSchema: ZodObject<
{
encryption: ZodObject<
{
algorithm: ZodLiteral<"AES-256-GCM">;
authTag: ZodString;
encryptedDek: ZodString;
iv: ZodString;
keyManagement: ZodLiteral<"RSA-OAEP-SHA256">;
},
$strip,
>;
},
$strip,
> = ...