├── .gitignore ├── Android.mk ├── LICENSE ├── Makefile ├── README.md ├── shim.c ├── vm.c └── vm.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | libs/ 3 | obj/ -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/Android.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/README.md -------------------------------------------------------------------------------- /shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/shim.c -------------------------------------------------------------------------------- /vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/vm.c -------------------------------------------------------------------------------- /vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/keystore-shim/HEAD/vm.h --------------------------------------------------------------------------------