BuildInstructionsUsingInstructionFile() static private method

Builds an instruction object from the instruction file.
static private BuildInstructionsUsingInstructionFile ( GetObjectResponse response, EncryptionMaterials materials ) : EncryptionInstructions
response Amazon.S3.Model.GetObjectResponse Instruction file GetObject response
materials EncryptionMaterials /// The non-null encryption materials to be used to encrypt and decrypt Envelope key. ///
return EncryptionInstructions
        /// <summary>
        /// Updates object where the object input stream contains the decrypted contents.
        /// </summary>
        /// <param name="instructionFileResponse">
        /// The getObject response of InstructionFile.
        /// </param>
        /// <param name="response">
        /// The getObject response whose contents are to be decrypted.
        /// </param>
        private void DecryptObjectUsingInstructionFile(GetObjectResponse response, GetObjectResponse instructionFileResponse)
        {
            // Create an instruction object from the instruction file response
            EncryptionInstructions instructions = EncryptionUtils.BuildInstructionsUsingInstructionFile(instructionFileResponse, this.encryptionMaterials);

            // Decrypt the object with the instructions
            EncryptionUtils.DecryptObjectUsingInstructions(response, instructions);
        }