make pbkdf2 async
This commit is contained in:
parent
817b877634
commit
643f7faa92
|
@ -191,13 +191,13 @@ class Community {
|
|||
)
|
||||
}
|
||||
|
||||
private observeChannelMessages(chats: string[]) {
|
||||
private async observeChannelMessages(chats: string[]) {
|
||||
const contentTopics: string[] = []
|
||||
|
||||
for (const chatId of chats) {
|
||||
const id = `${this.communityPublicKey}${chatId}`
|
||||
const channelContentTopic = idToContentTopic(id)
|
||||
const symKey = createSymKeyFromPassword(id)
|
||||
const symKey = await createSymKeyFromPassword(id)
|
||||
|
||||
contentTopics.push(channelContentTopic)
|
||||
|
||||
|
|
|
@ -1,13 +1,25 @@
|
|||
import pbkdf2 from 'pbkdf2'
|
||||
import { utf8ToBytes } from 'ethereum-cryptography/utils'
|
||||
import { pbkdf2 } from 'pbkdf2'
|
||||
|
||||
const AESKeyLength = 32 // bytes
|
||||
|
||||
export function createSymKeyFromPassword(password: string): Uint8Array {
|
||||
return pbkdf2.pbkdf2Sync(
|
||||
Buffer.from(password, 'utf-8'),
|
||||
export async function createSymKeyFromPassword(
|
||||
password: string
|
||||
): Promise<Uint8Array> {
|
||||
return new Promise((resolve, reject) => {
|
||||
pbkdf2(
|
||||
utf8ToBytes(password),
|
||||
'',
|
||||
65356,
|
||||
AESKeyLength,
|
||||
'sha256'
|
||||
'sha256',
|
||||
(err, buf) => {
|
||||
if (err) {
|
||||
reject(err)
|
||||
} else {
|
||||
resolve(buf)
|
||||
}
|
||||
}
|
||||
)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue