summaryrefslogtreecommitdiffstats
path: root/src/tests/verify/pkey.c
blob: 52f48e58a262b0262725f2b1cbd5afe9ad3927c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * $Source$
 * $Author$
 *
 * Copyright 1991 by the Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * For copying and distribution information, please see the file
 * <krb5/copyright.h>.
 *
 */

#if !defined(lint) && !defined(SABER)
static char rcsid_pkey_c [] =
"$Id$";
#endif	/* !lint & !SABER */
#include <stdio.h>

void pkey(k)
     unsigned char *k;
{
  int i;
  unsigned int foo;

  for (i = 0 ; i < 8 ; i++) {
    foo = *k++;
    fprintf(stderr, "%x ", foo);
  }
}