# File lib/quiz1/t/solutions/Jamis Buck/lib/cipher.rb, line 69
  def get( name )
    svc_name = @algorithms[ name ]
    raise "No such algorithm #{name.inspect}" if svc_name.nil?

    return @registry.service( svc_name )
  end