# File lib/Dnsruby/resource/TSIG.rb, line 279
      def rdata_to_string        
        #@TODO@ Provide more info?     
        rdatastr=""
        if (@algorithm!=nil)
          error = @error
          error = "UNDEFINED" unless error!=nil
          rdatastr = "#{@algorithm}. #{error}";
          if (@other_size > 0 && @other_data!=nil)
            rdatastr += " #{@other_data}"
          end
        end
        
        return rdatastr
      end