Revision 1bc4eb6202ca4dd24e815c960cb65c5c7f060ee7 authored by John Baldwin on 01 February 2010, 22:16:44 UTC, committed by John Baldwin on 01 February 2010, 22:16:44 UTC
Initialize the ifnet before calling mii_phy_probe() as some phy drivers
(e.g. e1000phy(4)) expect if_dname to be valid when they are probed.

Approved by:	re (kensmith)
1 parent 12f18b5
Raw File
shadriver.c
/* SHADRIVER.C - test driver for SHA-1 (and SHA-0)
 */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");

/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
   rights reserved.

   RSA Data Security, Inc. makes no representations concerning either
   the merchantability of this software or the suitability of this
   software for any particular purpose. It is provided "as is"
   without express or implied warranty of any kind.

   These notices must be retained in any copies of any part of this
   documentation and/or software.
 */

/* The following makes SHA default to SHA-1 if it has not already been
     defined with C compiler flags.
 */
#ifndef SHA
#define SHA 1
#endif

#include <sys/types.h>

#include <stdio.h>
#include <time.h>
#include <string.h>
#include "sha.h"
#include "sha256.h"
#if SHA == 1
#define SHA_Data SHA1_Data
#elif SHA == 256
#define SHA_Data SHA256_Data
#endif

/* Digests a string and prints the result.
 */
static void SHAString (string)
char *string;
{
  char buf[2*32+1];

  printf ("SHA-%d (\"%s\") = %s\n", 
	SHA, string, SHA_Data(string,strlen(string),buf));
}

/* Digests a reference suite of strings and prints the results.
 */
main()
{
  printf ("SHA-%d test suite:\n", SHA);

  SHAString ("");
  SHAString ("abc");
  SHAString ("message digest");
  SHAString ("abcdefghijklmnopqrstuvwxyz");
  SHAString
    ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
  SHAString
    ("1234567890123456789012345678901234567890\
1234567890123456789012345678901234567890");
  return 0;
}
back to top