我想通过GitHub REST API设置一个仓库密码。我使用文档中的示例:
const sodium = require('tweetsodium');
const key = "base64-encoded-public-key";
const value = "plain-text-secret";
// Convert the message and key to Uint8Array's (Buffer implements that interface)
const messageBytes = Buffer.from(value);
const keyBytes = Buffer.from(key, 'base64');
// Encrypt using LibSodium.
const encryptedBytes = sodium.seal(messageBytes, keyBytes);
// Base64 the encrypted secret
const encrypted = Buffer.from(encryptedBytes).toString('base64');
console.log(encrypted);
字符串
我收到这个错误:
(node:6008) UnhandledPromiseRejectionWarning: Error: bad public key size
at checkBoxLengths (C:\Users\User\probot\node_modules\tweetnacl\nacl-fast.js:2158:54)
at Function.nacl.box.before (C:\Users\User\probot\node_modules\tweetnacl\nacl-fast.js:2231:3)
at Object.nacl.box (C:\Users\User\probot\node_modules\tweetnacl\nacl-fast.js:2225:20)
at Object.tweetSodium.seal (C:\Users\User\probot\node_modules\tweetsodium\dist\index.umd.js:53:33)
at createSecret (C:\Users\User\probot\src\service\secret.js:55:33)
at Object.<anonymous> (C:\Users\User\probot\src\service\secret.js:73:1)
at Module._compile (internal/modules/cjs/loader.js:1138:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1158:10)
at Module.load (internal/modules/cjs/loader.js:986:32)
at Function.Module._load (internal/modules/cjs/loader.js:879:14)
(node:6008) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:6008) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
型
Problem:如何正确加密和解密密钥,以便在我的API中使用?
解决方案:@Topaco提到需要使用base64编码的密钥,比如2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=
,解决了上面描述的错误。
已编辑
我将在不同的仓库中使用不同的密钥。我应该为每个仓库生成一个新的base64编码密钥吗?
2条答案
按热度按时间2nc8po8w1#
示例代码不太清楚
key
实际上是什么以及从哪里获得它。您需要从/repos/{owner}/{repo}/codespaces/secrets/public-key
端点获得的“存储库公钥”。将存储库公钥与新secret中的值一起使用:
字符串
然后,您可以创建或更新密钥:
型
hgb9j2n62#
这是我使用的代码。
字符串