function decryptAttendees
decryptAttendees(
rows: Attendee[],
privateKey: CryptoKey,
): Promise<Attendee[]>

Decrypt a list of raw attendees (all fields). Used when attendees are fetched via batch query.

Parameters

rows: Attendee[]
privateKey: CryptoKey

Return Type

Promise<Attendee[]>

Usage

import { decryptAttendees } from "docs/database.ts";