diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-17 22:18:25 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-17 22:18:25 +0100 |
commit | 6a3db4c72485aba6187466005473e287f539e3ce (patch) | |
tree | 463ce5e3f04f8197cd40565e8ce35c0f98e6d694 /verifysetup/core/crypt.go | |
parent | 61cc5e9a02a38cd086d382e521509e85fecd6d07 (diff) | |
download | fsverify-6a3db4c72485aba6187466005473e287f539e3ce.tar.gz fsverify-6a3db4c72485aba6187466005473e287f539e3ce.tar.bz2 |
Clean up code
Diffstat (limited to 'verifysetup/core/crypt.go')
-rw-r--r-- | verifysetup/core/crypt.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/verifysetup/core/crypt.go b/verifysetup/core/crypt.go index 4b448c5..4658641 100644 --- a/verifysetup/core/crypt.go +++ b/verifysetup/core/crypt.go @@ -37,6 +37,5 @@ func SignDatabase(database string, minisignKeys string) ([]byte, error) { return nil, err } signature := minisign.SignWithComments(privateKey, data, "fsverify", "fsverify") - fmt.Printf("SIGNATURE: %x\n", signature) return signature, err } |