x-cos-server-side-encryption
头部来完成。int main(int argc, char *argv[]){cos_pool_t *p = NULL;int is_cname = 0;cos_status_t *s = NULL;cos_request_options_t *options = NULL;cos_string_t bucket;cos_string_t object;cos_table_t *resp_headers = NULL;cos_table_t *headers = NULL;cos_string_t file;cos_string_t download_file;// 初始化if (cos_http_io_initialize(NULL, 0) != COSE_OK) {exit(1);}cos_pool_create(&p, NULL);// 初始化请求选项options = cos_request_options_create(p);options->config = cos_config_create(options->pool);cos_str_set(&options->config->endpoint, "cos.ap-guangzhou.myqcloud.com"); // your endpointcos_str_set(&options->config->access_key_id, "SECRETID"); // your SecretIdcos_str_set(&options->config->access_key_secret, "SECRETKEY"); // your SecretKeycos_str_set(&options->config->appid, "APPID"); //your appidoptions->config->is_cname = is_cname;options->ctl = cos_http_controller_create(options->pool, 0);cos_str_set(&bucket, "<BucketName-APPID>"); //your bucketname, <BucketName-APPID>// 设置服务端加密头部,SSE-COSheaders = cos_table_make(p, 1);apr_table_add(headers, "x-cos-server-side-encryption", "AES256");cos_str_set(&file, "example1.txt"); // your filenamecos_str_set(&object, "example_object"); // your object name// 上传对象s = cos_put_object_from_file(options, &bucket, &object, &file, headers, &resp_headers);if (cos_status_is_ok(s)) {printf("put object succeeded\\n");} else {printf("put object failed\\n");}// 下载对象cos_str_set(&download_file, "example2.txt");s = cos_get_object_to_file(options, &bucket, &object, NULL, NULL, &download_file, &resp_headers);if (cos_status_is_ok(s)) {printf("get object succeeded\\n");} else {printf("get object failed\\n");}cos_pool_destroy(p);cos_http_io_deinitialize();return 0;}
x-cos-server-side-encryption-customer-*
头部来完成。int main(int argc, char *argv[]){cos_pool_t *p = NULL;int is_cname = 0;cos_status_t *s = NULL;cos_request_options_t *options = NULL;cos_string_t bucket;cos_string_t object;cos_table_t *resp_headers = NULL;cos_table_t *headers = NULL;cos_string_t file;cos_string_t download_file;// 初始化if (cos_http_io_initialize(NULL, 0) != COSE_OK) {exit(1);}cos_pool_create(&p, NULL);// 初始化请求选项options = cos_request_options_create(p);options->config = cos_config_create(options->pool);cos_str_set(&options->config->endpoint, "https://cos.ap-guangzhou.myqcloud.com"); // your endpoint, 需要使用HTTPS请求cos_str_set(&options->config->access_key_id, "SECRETID"); // your SecretIdcos_str_set(&options->config->access_key_secret, "SECRETKEY"); // your SecretKeycos_str_set(&options->config->appid, "APPID"); //your appidoptions->config->is_cname = is_cname;options->ctl = cos_http_controller_create(options->pool, 0);cos_str_set(&bucket, "<BucketName-APPID>"); //your bucketname, <BucketName-APPID>// 设置服务端加密头部,SSE-Cheaders = cos_table_make(p, 3);apr_table_add(headers, "x-cos-server-side-encryption-customer-algorithm", "AES256");apr_table_add(headers, "x-cos-server-side-encryption-customer-key", "MDEyMzQ1Njc4OUFCQ0RFRjAxMjM0NTY3ODlBQkNERUY="); //替换成您的服务端加密密钥的 Base64 编码apr_table_add(headers, "x-cos-server-side-encryption-customer-key-MD5", "U5L61r7jcwdNvT7frmUG8g=="); // 替换成您的服务端加密密钥 MD5 哈希值的 Base64 编码cos_str_set(&file, "example1.txt"); // your filenamecos_str_set(&object, "example_object"); // your object name// 上传对象s = cos_put_object_from_file(options, &bucket, &object, &file, headers, &resp_headers);if (cos_status_is_ok(s)) {printf("put object succeeded\\n");} else {printf("put object failed\\n");}// 下载对象,下载对象也需要提供服务端加密头部cos_str_set(&download_file, "example2.txt");s = cos_get_object_to_file(options, &bucket, &object, headers, NULL, &download_file, &resp_headers);if (cos_status_is_ok(s)) {printf("get object succeeded\\n");} else {printf("get object failed\\n");}cos_pool_destroy(p);cos_http_io_deinitialize();return 0;}
本页内容是否解决了您的问题?