Sha256: d7282a69ea922881dcddb73a7d454b497e0af33b61f01aad7b86865e13f87780
Contents?: true
Size: 858 Bytes
Versions: 33
Compression:
Stored size: 858 Bytes
Contents
module Aws module S3 module Encryption # This module defines the interface required for a {Client#key_provider}. # A key provider is any object that: # # * Responds to {#encryption_materials} with an {Materials} object. # # * Responds to {#key_for}, receiving a JSON document String, # returning an ecryption key. The returned encryption key # must be one of: # # * `OpenSSL::PKey::RSA` - for asymmetric encryption # * `String` - 32, 24, or 16 bytes long, for symmetric encryption # module KeyProvider # @return [Materials] def encryption_materials; end # @param [String<JSON>] materials_description # @return [OpenSSL::PKey::RSA, String] encryption_key def key_for(materials_description); end end end end end
Version data entries
33 entries across 33 versions & 1 rubygems