wolfssl-wolfcrypt 1.1.0

Rust wrapper for wolfssl C library cryptographic functionality
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: all
all:
	cargo build
	cargo clippy
	cargo doc

.PHONY: test
test:
	cargo test -- --test-threads=1

.PHONY: testfips
testfips:
	cargo test --lib --bins --tests -- --test-threads=1

.PHONY: clean
clean:
	cargo clean