UNPKG

@logismika/crypto

Version:
20 lines (19 loc) 1.1 kB
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import * as kuznechik from "./kuznechik"; export const getPasswordHash = (key_1, ...args_1) => __awaiter(void 0, [key_1, ...args_1], void 0, function* (key, algorythm = "Kuznechik") { switch (algorythm) { case "Kuznechik": return yield kuznechik.getPasswordHash(key); default: const _ = algorythm; throw new Error(`Unknown algorythm "${algorythm}"`); } });