animo-secure-env 0.5.0

secure-env is a wrapper library around the Android KeyStore and the iOS Security Framework for key creation and sign operations using the Secure Element
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
run-android: build-android-library
	cargo apk run --manifest-path ./examples/android/Cargo.toml

build-android-library:
	cargo ndk -t arm64-v8a build --features=android_testing

build-android: build-android-library
	cargo apk build --manifest-path ./examples/android/Cargo.toml

test: test-ios test-android
	
test-android:
	cargo ndk -t arm64-v8a build --features=android_testing
	(cd examples/android && cargo apk run)

test-ios:
	(cd examples/ios && cargo xcodebuild b && cargo xcodebuild o)