gpt4 book ai didi

encryption - 客户提供的 dart/gcloud 加密 key

转载 作者:行者123 更新时间:2023-12-03 03:43:14 25 4
gpt4 key购买 nike

使用 dart-lang/gcloud要在 Google Cloud Storage 中读取和写入文件,是否可以提供客户提供的加密 key ?

Dart gcloud 库基于 dart-lang/googleapis它本身是与 Cloud Storage REST API 的接口(interface),但它使用的 HTTP 客户端是如此抽象,以至于很难说出如何设置自定义加密所需的 header 。

最佳答案

目前 package:gcloud 中不支持自定义加密 key 。 .

虽然 Storage constructor接受 http.Client .因此,您可以提供自己的客户端来添加标题,类似于:

import 'package:http/http.dart' as http;
import 'package:gcloud/storage.dart' as storage;

class ClientWithKeys extends http.client {
final String encryptionAlgorithm;
final String encryptionKey;
final String encryptionSHA256;

ClientWithKeys(this.encriptionAlgorithm,
this.encriptionKey,
this.encryptionSHA256);

Future<StreamedResponse> send(request) {
request.headers['x-goog-encryption-algorithm'] = encryptionAlgorithm;
request.headers['x-goog-encryption-key'] = encryptionKey;
request.headers['x-goog-encryption-key-sha256'] = encryptionSHA256;
return super.send(request);
}
}

code() {
final client = new ClientWithKeys('<algo>', '<key>', '<sha256>');
final api = new storage.Storage(client, '<project-id>');
...
client.close();
}

关于encryption - 客户提供的 dart/gcloud 加密 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43080261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com