Commit graph

237 commits

Author SHA1 Message Date
Jack Grigg
dcae60439b
Compile pbkdf2 without default features
Enables the library to be compiled for target wasm32-unknown-unknown.

Closes #46.
2020-01-01 19:33:02 -05:00
Jack Grigg
a89a889689
v0.1.1 2019-12-29 21:01:05 -06:00
Jack Grigg
3fc6c679f9
Generate gzip-ed manpages 2019-12-29 16:00:16 -06:00
Jack Grigg
f0a4470bee
Use rand crate for all randomness generation
It's nice to use getrandom directly, but we have other dependencies that
we need to pass a rand::Rng to, so let's just use rand::rngs::OsRng for
everything.
2019-12-28 16:18:03 -06:00
Jack Grigg
63a1eba118
Use re-exported aead and generic-array dependencies
This drops them as direct dependencies, and ensures we are using the
correct versions of them.
2019-12-28 15:52:40 -06:00
Jack Grigg
72bd049b23
v0.1.0 2019-12-27 22:52:40 -06:00
Jack Grigg
a1a5b12411
cargo update 2019-12-27 15:37:54 -06:00
Jack Grigg
b5996d1edd
Add bech32 crate to dependencies 2019-12-23 14:33:23 -06:00
Jack Grigg
bbc152ca89
Property-based testing of round-trip X25519 key wrapping 2019-12-17 17:50:38 -06:00
Jack Grigg
902b0d1908
Rewrite ArmoredWriter using stream writer from radix64 crate 2019-12-16 19:46:43 -06:00
Jack Grigg
074839228d
cargo update 2019-12-14 15:24:32 +00:00
Jack Grigg
23ad7e62ce
Migrate to rand 0.7 2019-12-14 15:23:49 +00:00
Jack Grigg
e8d05ac162
Use cargo patch for rsa crate
Also switches to an OAEP branch that has been rebased on rsa 0.1.4.
2019-12-01 13:14:58 +00:00
Jack Grigg
46f8a872a9
Rewrite ArmoredReader
Additionally implements the now-specified EOF marker.

Closes #11.
2019-11-26 00:27:07 +00:00
Jack Grigg
bc2b3ca7ca
Use secrecy crate for passphrases and Ed25519 keys
The other two key material types (StaticSecret and RSAPrivateKey)
internally zeroize on drop.
2019-11-24 00:44:10 +00:00
Jack Grigg
d9fced494d
Decryption for OpenSSH keys encrypted with AES-CTR 2019-11-19 15:41:11 +00:00
Jack Grigg
97e0f34070
Implement bcrypt_pbkdf
Test vectors are from the rust-crypto implementation.
2019-11-19 15:24:23 +00:00
Jack Grigg
ec6c52f385
Correctly serialize zero as an SSH mpint
This should never happen for our current uses of mpint, but let's fix it
while we're here.
2019-11-18 01:38:36 +00:00
Jack Grigg
e873f47c56
Use OsRng consistently from rand
rand_os disappears part-way through the rand 0.7 series, so may as well
move away from it now.
2019-11-17 21:33:08 +00:00
Jack Grigg
e41a6d98ac
cargo update 2019-11-17 21:09:56 +00:00
Jack Grigg
712c025b40
Switch from byte-oriented x25519 function to typed DH API
This introduces clear-on-drop semantics for X25519 secret keys. As a
side effect, it also causes these keys to be written in clamped form (as
x25519_dalek::StaticSecret stores the keys in clamped form internally).
Unclamped X25519 secret keys will still be read, but reading and then
writing the same key is no longer guaranteed to result in the same
encoding (and in any case, this is unnecessary for age use cases).
2019-10-29 15:34:34 +00:00
Jack Grigg
e74ce90f39
rage-mount backend for encrypted tarballs 2019-10-25 20:44:12 +13:00
Jack Grigg
f532bbb7d9
cargo update 2019-10-23 08:10:27 +13:00
Jack Grigg
b27d81b86c
rage-mount binary with support for viewing encrypted ZIPs 2019-10-21 22:30:01 +13:00
Jack Grigg
14c5dfd2eb
ssh-rsa and ssh-ed25519 encryption 2019-10-16 18:46:17 +13:00
Jack Grigg
a772741ce2
Parse OpenSSH public keys 2019-10-16 18:46:17 +13:00
Jack Grigg
37e22e2448
Binary for generating a man page
Stored as an example so that "cargo install" does not install the binary
by default.
2019-10-15 15:52:27 +13:00
Jack Grigg
7a6dc8ddf4
cargo update 2019-10-14 13:15:51 +13:00
Jack Grigg
b35f4ac1c2
Read keys and aliases from the default system location
Closes #3.
2019-10-14 12:21:14 +13:00
Jack Grigg
b227629a57
Don't send encrypted output to stdout if bound to a TTY
Part of #2.
2019-10-14 00:17:46 +13:00
Jack Grigg
b885e28415
Passphrase input improvements
- Prevent passphrase from being echoed.
- Confirm passphrase entry when encrypting.
- Require that input files are passed as CLI arguments so they don't
  conflict with passphrase input.

Part of #2.
2019-10-14 00:05:04 +13:00
Jack Grigg
038c9a74ed
Remote key support
Closes #7.
2019-10-13 21:27:12 +13:00
Jack Grigg
9dc34dc4da
Primitive cryptographic operations 2019-10-09 09:36:40 +13:00
Jack Grigg
d28ea539ac
Message parsing 2019-10-08 22:32:51 +13:00
Jack Grigg
8e4bed6a6f
Key generation 2019-10-08 21:59:02 +13:00
Jack Grigg
06602788b3
Set up CLI arguments 2019-10-08 21:59:02 +13:00
Jack Grigg
60dc6da4dc
Initial empty binary crate 2019-10-06 16:52:50 +11:00