This repository was archived by the owner on Mar 5, 2022. It is now read-only.
Tags: vvo/iron-store
Tags
feat(password): accept array of password objects for rotation This adds a way to provide array of passwords like this: ```js import ironStore from "iron-store"; const store = await ironStore({ password: [ { id: 2, password: "generated_complex_password_at_least_32_characters_long", }, { id: 1, password: "generated_complex_password_at_least_32_characters_long", }, ], }); store.set("user", { id: 80, admin: true }); const seal = await store.seal(); ``` Required for vvo/iron-session#69