mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2025-01-10 20:17:32 +01:00
8 lines
269 B
JavaScript
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});
|
||
|
}
|