view libutil/pinentry.c @ 103:3477438b5706 default tip

new fc-simtool command script: oper-sim-test
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 06 Aug 2022 16:34:43 +0000
parents 34bbb0585cab
children
line wrap: on
line source

#include <sys/types.h>
#include <ctype.h>
#include <stdio.h>

encode_pin_entry(arg, dest)
	char *arg;
	u_char *dest;
{
	unsigned n;

	n = 0;
	while (*arg) {
		if (!isdigit(*arg)) {
			fprintf(stderr,
			"error: PIN argument contains a non-digit character\n");
			return(-1);
		}
		if (n >= 8) {
			fprintf(stderr, "error: PIN argument is too long\n");
			return(-1);
		}
		*dest++ = *arg++;
		n++;
	}
	for (; n < 8; n++)
		*dest++ = 0xFF;
	return(0);
}