mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
12bb8cdd38
This sets up infrastructure in libutil to allow for signing other than by a secret key in memory. #9076 uses this to implement remote signing. (Split from that PR to allow reviewing in smaller chunks.) Co-Authored-By: Raito Bezarius <masterancpp@gmail.com>
10 lines
114 B
C++
10 lines
114 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "signature/local-keys.hh"
|
|
|
|
namespace nix {
|
|
|
|
PublicKeys getDefaultPublicKeys();
|
|
|
|
}
|