about summary refs log tree commit diff
path: root/doc/signing.txt
blob: 1d042e95e220ee7abffb49816992ac62f598b076 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Generate a private key:

$ (umask 277 && openssl genrsa -out /nix/etc/nix/signing-key.sec 2048)

The private key should be kept secret (only readable to the Nix daemon
user).


Generate the corresponding public key:

$ openssl rsa -in /nix/etc/nix/signing-key.sec -pubout > /nix/etc/nix/signing-key.pub

The public key should be copied to all machines to which you want to
export store paths.


Signing:

$ nix-hash --type sha256 --flat svn.nar | openssl rsautl -sign -inkey mykey.sec > svn.nar.sign


Verifying a signature:

$ test "$(nix-hash --type sha256 --flat svn.nar)" = "$(openssl rsautl -verify -inkey mykey.pub -pubin -in svn.nar.sign)"