Skip to content

EventLogEncryption

6 exports Added in v1.0.0 Source

Encrytion

Signature

declare class EventLogEncryption extends any {
  constructor();
}

layerSubtle

Added in v1.0.0 Source

Signature

declare const layerSubtle: Layer.Layer<EventLogEncryption>;

Signature

declare function makeEncryptionSubtle(crypto: Crypto): Effect<any>;

Models

Signature

declare const EncryptedEntry: Struct<{
  readonly encryptedEntry: any;
  readonly entryId: any;
}>;

Signature

declare const EncryptedRemoteEntry: Struct<{
  readonly encryptedEntry: any;
  readonly entryId: any;
  readonly iv: any;
  readonly sequence: Number;
}>;

EncryptedRemoteEntry interface

Added in v1.0.0 Source

Signature

interface EncryptedRemoteEntry extends Type<typeof EncryptedRemoteEntry> {
  [key: string]: any;
}