mtproto removed

This commit is contained in:
MHSanaei
2023-06-09 15:58:47 +03:30
parent ca10623e40
commit 81aa3ed10e
2 changed files with 0 additions and 46 deletions

View File

@@ -110,19 +110,6 @@ class RandomUtil {
return str;
}
static randomMTSecret() {
let str = '';
for (let i = 0; i < 32; ++i) {
let index = this.randomInt(16);
if (index <= 9) {
str += index;
} else {
str += seq[index - 10];
}
}
return str;
}
static randomUUID() {
let d = new Date().getTime();
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {