Blame crypt/ufc.c

Packit 6c4009
/*
Packit 6c4009
 * UFC-crypt: ultra fast crypt(3) implementation
Packit 6c4009
 *
Packit 6c4009
 * Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit 6c4009
 *
Packit 6c4009
 * This library is free software; you can redistribute it and/or
Packit 6c4009
 * modify it under the terms of the GNU Lesser General Public
Packit 6c4009
 * License as published by the Free Software Foundation; either
Packit 6c4009
 * version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
 *
Packit 6c4009
 * This library is distributed in the hope that it will be useful,
Packit 6c4009
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
 * Lesser General Public License for more details.
Packit 6c4009
 *
Packit 6c4009
 * You should have received a copy of the GNU Lesser General Public
Packit 6c4009
 * License along with the GNU C Library; see the file COPYING.LIB.  If not,
Packit 6c4009
 * see <http://www.gnu.org/licenses/>.
Packit 6c4009
 *
Packit 6c4009
 * @(#)ufc.c	2.7 9/10/96
Packit 6c4009
 *
Packit 6c4009
 * Stub main program for debugging
Packit 6c4009
 * and benchmarking.
Packit 6c4009
 *
Packit 6c4009
 */
Packit 6c4009
Packit 6c4009
#include <stdio.h>
Packit 6c4009
Packit 6c4009
char *crypt();
Packit 6c4009
Packit 6c4009
main(argc, argv)
Packit 6c4009
  int argc;
Packit 6c4009
  char **argv;
Packit 6c4009
  { char *s;
Packit 6c4009
    unsigned long i,iterations;
Packit 6c4009
Packit 6c4009
    if(argc != 2) {
Packit 6c4009
      fprintf(stderr, "usage: ufc iterations\n");
Packit 6c4009
      exit(1);
Packit 6c4009
    }
Packit 6c4009
    argv++;
Packit 6c4009
    iterations = atoi(*argv);
Packit 6c4009
    printf("ufc: running %d iterations\n", iterations);
Packit 6c4009
Packit 6c4009
    for(i=0; i
Packit 6c4009
      s=crypt("foob","ar");
Packit 6c4009
    if(strcmp(s, "arlEKn0OzVJn.") == 0)
Packit 6c4009
      printf("OK\n");
Packit 6c4009
    else {
Packit 6c4009
      printf("wrong result: %s!!\n", s);
Packit 6c4009
      exit(1);
Packit 6c4009
    }
Packit 6c4009
    exit(0);
Packit 6c4009
  }