1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-13 13:37:25 +01:00

8 lines
269 B
JavaScript

import aesjs from "../../../lib/aes-js/index.js";
import {hkdf} from "../../utils/crypto/hkdf.js";
import {Platform as ModernPlatform} from "./Platform.js";
export function Platform(container, paths) {
return new ModernPlatform(container, paths, {aesjs, hkdf});
}