-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.txt
More file actions
15 lines (12 loc) · 807 Bytes
/
README.txt
File metadata and controls
15 lines (12 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
This repo aims to be a "minimum working example" for building a program and
packaging it in a cryptex for use with the Apple SRD. The example cryptex in
the SRD repo uses quite a complicated build system which makes it hard to
follow the build process; this repo exists to make it easier to follow the
essential parts of the process.
Contained is the "simple server" example from the SRD repo. Running `make` will
build the server and package it in a cryptex. Running `make install` will
install the cryptex to your device (must set `CRYPTEXCTL_UDID`).
Once installed, running `nc DEVICE_IP 7070` (where `DEVICE_IP` if your device's
IP address) should yield a response containing the server's process ID and the
cryptex mount path.
You are encouraged to read `Makefile` for more information and context.