Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: add urcrypt #90

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6b7e21b
wip: add `urcrypt`
matthew-levan Sep 22, 2023
ef382a8
`urcrypt` builds
matthew-levan Sep 25, 2023
2f16a2d
un-vendor `urcrypt`
matthew-levan Sep 26, 2023
589899b
wip: add `urcrypt-sys` crate; install `urcrypt` on system in ci
matthew-levan Sep 26, 2023
9db720f
Merge branch 'as/trace' into msl/urcrypt
matthew-levan Sep 28, 2023
58af42e
jets: add `shay` and `shax`
matthew-levan Sep 28, 2023
4ea4624
jets: add `shas`
matthew-levan Oct 3, 2023
cf3c624
jets: add `shal`
matthew-levan Oct 4, 2023
b08c5d2
jets: add `sha1`
matthew-levan Oct 4, 2023
8a07ad5
Merge branch 'status' into msl/urcrypt
matthew-levan Oct 5, 2023
9a367af
jets: move `sha` jets into `crypto/`
matthew-levan Oct 6, 2023
40e04e8
jets: add `puck`
matthew-levan Oct 6, 2023
c344814
jets: add `shar`
matthew-levan Oct 6, 2023
d24fa43
jets: rename `crypto` to `lock`
matthew-levan Oct 9, 2023
fa95ca9
jets: add `++ed:veri:crypto`
matthew-levan Oct 9, 2023
b5513af
jets: add `++sign:ed:crypto`
matthew-levan Oct 10, 2023
13071d4
jets: cleanup `sha`
matthew-levan Oct 10, 2023
990cb49
noun: restore to `status`
matthew-levan Oct 10, 2023
d7f5160
noun: fix `DirectAtom::as_bytes()`
matthew-levan Oct 10, 2023
91a8565
jets: cleanup nasty byte copying
matthew-levan Oct 10, 2023
bd1f891
Post elements of AES SIV.
sigilante Oct 11, 2023
f144f9d
WIP siva
sigilante Oct 12, 2023
e9c1965
wip: for neal
matthew-levan Oct 16, 2023
41dfb68
wip: more utils for `aes_siv`
matthew-levan Oct 16, 2023
64ee8a0
jets: passing two tests for `en:siva:crypto`
matthew-levan Oct 18, 2023
58c58aa
jets: finish `++{en,de}:aes:crypto`
matthew-levan Oct 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/ares-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,33 @@ jobs:
- name: Format
run: cargo fmt --check

# Install third-party dependencies
#
- name: Install dependencies
run: |
# install apt packages
sudo apt-get install -y \
libcrypto++-dev \
openssl \
cmake \
libsecp256k1-dev &&

# install libaes_siv
git clone https://github.com/dfoxfranke/libaes_siv.git &&
cd libaes_siv &&
cmake . &&
make &&
sudo make install

# install urcrypt
cd .. &&
git clone https://github.com/urbit/urcrypt.git &&
cd urcrypt &&
./autogen.sh &&
./configure --enable-shared &&
make &&
sudo make install

# See clippy linter docs: https://github.com/rust-lang/rust-clippy
#
# First linter is set to fail for all warnings, then ignored warnings are
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
A redesigned Mars for the Urth/Mars Urbit runtime. Currently WIP.

Read the [proposal](docs/proposal/proposal-nock-performance.md) and [hypotheses](docs/proposal/hypotheses.md) for an overview. Before branching or opening a PR please review the [contribution guidelines](CONTRIBUTING.md).

## Installation

Dependencies:
* [`libaes_siv`](https://github.com/dfoxfranke/libaes_siv)
* [`openssl`](https://github.com/openssl/openssl)
* [`libsecp256k1`](https://github.com/bitcoin-core/secp256k1)
Loading