aboutsummaryrefslogtreecommitdiff
path: root/utils/last_gasp_default_pin
AgeCommit message (Expand)Author
2017-04-26Lower PBKDF2 password iterations and add delay on bad PIN.Rob Austein
2016-06-25Dial back the last-gasp iterations to something sane.Paul Selkirk
2016-05-26correct BPKDF2 -> PBKDF2 ;)Fredrik Thulin
2016-05-25Doh, helps if one actually **uses** the argument one just parsed.Rob Austein
2016-05-25PBKDF2 works better if we generate the right number of output bytes.Rob Austein
2016-05-25Start cleaning up PIN code.Rob Austein
paul@psgd.org> 2016-07-21 16:32:43 -0400 Use a fresh port of libcli, which retains more of the original API.' href='/sw/stm32/commit/libraries/libcli/Makefile?h=js_keywrap&id=e3fe7d89b6094bfef42f42329e15631f684f0748'>e3fe7d8
d746893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

                       
 










                               
                               






                       
                         
vpath %.c ${LIBCLI_SRC}
vpath %.h ${LIBCLI_SRC}

CFLAGS += \
	-DDO_CRYPT=0 \
	-DDO_FILE=0 \
	-DDO_FILTER=0 \
	-DDO_IDLE_TIMEOUT=0 \
	-DDO_MALLOC=0 \
	-DDO_PRINT_BUFFERED=0 \
	-DDO_REGULAR=0 \
	-DDO_SOCKET=0 \
	-DDO_TAB_COMPLETION=1 \
	-DDO_TELNET=0
CFLAGS += -Wno-unused-parameter

all: libcli.a

libcli.a: libcli.o
	$(AR) rcs $@ $^

clean:
	rm -f libcli.[ao]