Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hpke/src/identifiers.ts>Aead

A Hybrid Public Key Encryption (HPKE) module built on top of Web Cryptography API.
Latest
type alias Aead
Deprecated
Deprecated

Use AeadId instead.

import { type Aead } from "https://deno.land/x/hpke@1.2.7/src/identifiers.ts";

The type alias of the supported AEAD identifiers.

deprecated
definition: Aead[keyof Aead]
variable Aead
Deprecated
Deprecated

Use AeadId instead.

import { Aead } from "https://deno.land/x/hpke@1.2.7/src/identifiers.ts";

The supported Authenticated Encryption with Associated Data (AEAD) identifiers.

type

{ Aes128Gcm: number; Aes256Gcm: number; Chacha20Poly1305: number; ExportOnly: number; }