forked from hacl-star/hacl-star
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
91 lines (80 loc) · 1.78 KB
/
.gitignore
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
*.o
*.so
*.exe
*.exe.dSYM
out.krml
hacl-star.tar.gz
build/
build-experimental/
lib/hst/ml/*.cmi
lib/hst/ml/*.cmx
lib/hst/ml/*.o
test/hash/ml/*
test/hash/*.exe
test/hash/sha256
test/hmac/ml/*
test/hmac/*.exe
test/hmac/hmac_sha256
test/bench.txt
pneutube/tube-star.exe
pneutube/tube-star.exe.dSYM/
pneutube/tube/
specs/chacha-poly-spec/
specs/chacha-spec/
specs/curve25519-spec/
specs/ed25519-spec/
specs/gf128-spec/
specs/poly-spec/
specs/salsa-spec/
specs/sha2-spec/
specs/hmac-sha2-spec/
specs/sha2_256-spec/
specs/sha2_384-spec/
specs/sha2_512-spec/
specs/hmac-sha2_256-spec/
specs/hmac-sha2_384-spec/
specs/hmac-sha2_512-spec/
code/lib/kremlin/ccomp-c/
code/lib/kremlin/lib-c/
code/lib/ml/hacllib.a
code/lib/ml/hacllib.cmxa
code/lib/ml/*.cmi
code/lib/ml/*.cmx
code/lib/ml/*.o
code/hash/sha2-c/
code/hash/sha2-256-c/
code/hash/sha2-384-c/
code/hash/sha2-512-c/
code/hmac/hmac-c/
code/api/aead-c/
code/api/box-c/
code/api/policies-c/
code/curve25519/x25519-c/
code/ed25519/ed25519-c/
code/poly1305/poly-c/
code/poly1305_32/poly-c/
code/salsa-family/chacha-c/
code/salsa-family/chacha-vec128/
code/salsa-family/chacha-vec128-c/
code/salsa-family/hsalsa-c/
code/salsa-family/salsa-c/
code/salsa-family/xsalsa-c/
secure_api/LowCProvider/.depend
secure_api/tmp-hacl/
secure_api/tmp-vale/
snapshots/hacl-c/bench.txt
snapshots/hacl-c/libhacl.*
snapshots/hacl-c/libhacl32.*
snapshots/snapshot-gcc
snapshots/snapshot-gcc-unrolled
snapshots/snapshot-compcert
snapshots/snapshot-compcert-unrolled
snapshots/snapshot-msvc
snapshots/snapshot-msvc-unrolled
snapshots/nss
snapshots/riot
snapshots/wireguard
doc/tutorial/0-coding-field-arithmetic-in-fstar/extracted_c/
doc/tutorial/1-recursion-vs-loops/extracted_c/
doc/tutorial/2-verifying-memory-safety/extracted_c/
doc/tutorial/4-verifying-functional-correctness/extracted_c/