使用公有密钥对 Amazon S3 存储桶对象进行加密 - 适用于 Ruby 的 Amazon 开发工具包
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

使用公有密钥对 Amazon S3 存储桶对象进行加密

以下代码示例将对象上传到 Amazon S3 存储桶。该对象的内容使用 RSA 公钥加密。

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX - License - Identifier: Apache - 2.0 require 'aws-sdk-s3' require 'openssl' # Uploads an object to an Amazon S3 bucket. The object's contents # are encrypted with an RSA public key. # # Prerequisites: # # - An Amazon S3 bucket. # # @param s3_encryption_client [Aws::S3::EncryptionV2::Client] An initialized # Amazon S3 encryption client. # @param bucket_name [String] The bucket's name. # @param object_key [String] The name of the object. # @param object_content [String] The content to add to the object. # @return [Boolean] true if the object was uploaded; otherwise, false. # @example # exit 1 unless object_uploaded_with_public_key_encryption?( # Aws::S3::EncryptionV2::Client.new( # encryption_key: OpenSSL::PKey::RSA.new(File.read('my-public-key.pem')), # key_wrap_schema: :rsa_oaep_sha1, # content_encryption_schema: :aes_gcm_no_padding, # security_profile: :v2, # region: 'us-east-1' # ), # 'doc-example-bucket', # 'my-file.txt', # 'This is the content of my-file.txt.' # ) def object_uploaded_with_public_key_encryption?( s3_encryption_client, bucket_name, object_key, object_content ) s3_encryption_client.put_object( bucket: bucket_name, key: object_key, body: object_content ) return true rescue StandardError => e puts "Error uploading object: #{e.message}" return false end # Full example call: # Prerequisites: an RSA key pair. def run_me bucket_name = 'doc-example-bucket' object_key = 'my-file.txt' object_content = 'This is the content of my-file.txt.' region = 'us-east-1' public_key_file = 'my-public-key.pem' public_key = OpenSSL::PKey::RSA.new(File.read(public_key_file)) # When initializing this Amazon S3 encryption client, note: # - For key_wrap_schema, use rsa_oaep_sha1 for asymmetric keys. # - For security_profile, for reading or decrypting objects encrypted # by the v1 encryption client, use :v2_and_legacy instead. s3_encryption_client = Aws::S3::EncryptionV2::Client.new( encryption_key: public_key, key_wrap_schema: :rsa_oaep_sha1, content_encryption_schema: :aes_gcm_no_padding, security_profile: :v2, region: region ) if object_uploaded_with_public_key_encryption?( s3_encryption_client, bucket_name, object_key, object_content ) puts 'Object uploaded.' else puts 'Object not uploaded.' end end run_me if $PROGRAM_NAME == __FILE__