crypto.subtle.deriveKey始终返回未定义

时间:2019-11-25 16:06:57

标签: javascript webcrypto-api

此问题的背景如下-我正在使用C#在服务器上使用密码加密一些加密数据。我现在正在尝试使用WebCrypto API在客户端上解密,但是对deriveKey的调用始终返回未定义(无错误)。我尝试创建MCVE,如下所示:

window.crypto.subtle.importKey(
    'raw',
    new TextEncoder().encode('passphrase'),
    { 
        'name': 'PBKDF2' 
    },
    false,
    ['deriveBits', 'deriveKey']
)
.then((baseKey) => {
    console.dir(baseKey) // This looks ok!
    window.crypto.subtle.deriveKey({
            'name': 'PBKDF2',
            salt: new TextEncoder().encode('my_salt'),
            iterations: 100000,
            hash: 'SHA-256'
        },
        baseKey,
        { 
            'name': 'AES-GCM', 
            iv: new TextEncoder().encode('iv_from_server'), 
            length: 256 
        },
        true,
        ['decrypt'])
})
.then((key2) => {
    console.log('generated new key')
    console.dir(key2) // This is always undefined
})
.catch((error) => console.dir(error))

我尝试摆弄一些参数无济于事。它确实需要使用PBKDF2和AES-GCM来匹配服务器。我不知道我是否正在尝试做那些算法不支持的事情,或者我是否有其他错误。...

1 个答案:

答案 0 :(得分:0)

您变得不确定,因为您没有从先前的承诺中返回任何东西。如果在returnKey调用之前放一个返回值,它将解决您的问题。修改后的代码如下:

window.crypto.subtle.importKey(
    'raw',
    new TextEncoder().encode('passphrase'),
    { 
        'name': 'PBKDF2' 
    },
    false,
    ['deriveBits', 'deriveKey']
)
.then((baseKey) => {
    console.dir(baseKey) // This looks ok!

    // ADD A RETURN TO RESOLVE WITH THE KEY IN THE NEXT PROMISE:
    return window.crypto.subtle.deriveKey({
            'name': 'PBKDF2',
            salt: new TextEncoder().encode('my_salt'),
            iterations: 100000,
            hash: 'SHA-256'
        },
        baseKey,
        { 
            'name': 'AES-GCM', 
            iv: new TextEncoder().encode('iv_from_server'), 
            length: 256 
        },
        true,
        ['decrypt'])
})
.then((key2) => {
    console.log('generated new key')
    console.dir(key2) // NOW IT WORKS
})
.catch((error) => console.dir(error))