fix lthash not being included in lib

This commit is contained in:
Adhiraj Singh
2021-09-25 23:01:58 +05:30
parent 89c819859b
commit 1f6ef554c2

View File

@@ -1,9 +1,12 @@
const { hkdf } = require("../Utils/generics");
import { hkdf } from '../Utils'
const o = 128;
class d {
constructor(e) {
salt: string
constructor(e: string) {
this.salt = e
}
add(e, t) {
@@ -45,4 +48,4 @@ class d {
return a
}
}
module.exports.LT_HASH_ANTI_TAMPERING = new d('WhatsApp Patch Integrity')
export const LT_HASH_ANTI_TAMPERING = new d('WhatsApp Patch Integrity')