Skip to content
Snippets Groups Projects
Select Git revision
  • c1e08a06812bd9163119ea087b68950c285c47b5
  • master default
  • dbck-q-n-d-link
  • foutput-text_stat-override
  • generations
  • text-stat-sha256
  • use-nettle
  • import-nettle
  • refactor-cached_get_text
  • refactor-cached_get_text-part-2
  • add-text_store
  • introduce-generation_position
  • remove-reclamation
  • dbfile-temp-filenames
  • sstrdup
  • dbfile_open_read-check-magic
  • adns_dist
  • liboop_dist
  • search
  • isc
  • dbdbckmultiplechoice
  • last.cvs.revision
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • adns_1_0
  • liboop_0_9
  • 2.0.7
  • search_bp
  • 2.0.6
  • 2.0.5
  • isc_1_01
  • Protocol-A-10.4
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • isc_1_00
  • isc_merge_1999_05_01
  • isc_merge_1999_04_21
41 results

debug.c

Blame
  • bf_test.c 383 B
    /* bf_test.c
     *
     * $Id$
     * Test the blow fish implementation. */
    
    #include "blowfish.h"
    
    #include <stdio.h>
    #include <stdlib.h>
    
    int main (int argc UNUSED, char **argv UNUSED)
    {
      if (bf_selftest())
        {
          fprintf(stderr, "Blowfish works.\n");
          return EXIT_SUCCESS;
        }
      else
        {
          fprintf(stderr, "ERROR: Blowfish failed.\n");
          return EXIT_FAILURE;
        }
    }