无法使用带有node-jose的base 64密钥创建解密

时间:2018-10-29 10:24:55

标签: node.js jwt jwk

我正在尝试使用the node-jose library来解密JWE,但是遇到了使用密钥的base64作为密钥的问题(因为外部API指示我这样做)。

<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_optimizationLevel="standard">

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"/>

</android.support.constraint.ConstraintLayout>

这将返回以下错误:

const crypto = require('crypto'); const jose = require('node-jose'); const secret = 'mySecret'; let hash = crypto.createHash('sha512'); let data = hash.update(secret, 'utf-8'); let token = getToken(); // Token is a correctly formatted JWE const key = JSON.stringify({ key: data.digest('base64'), kty: 'oct', alg: 'HS512', use: 'enc' }); jose.JWK.asKey(key). then(function (result) { jose.JWE.createDecrypt(result.keystore). decrypt(token). then(function (result) { console.log(result); }).catch(err => { console.log(err); }); });

我在密钥初始化中做错了吗?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

设法使其在以下方面起作用:

rep