From 7af918cfddbd70ebd81f9531267f67bd5cf711c8 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 3 May 2015 18:07:21 +0200 Subject: [PATCH] key: Remove unused convenience methods --- server/key.go | 41 ----------------------------------------- server/server.go | 4 ++-- 2 files changed, 2 insertions(+), 43 deletions(-) diff --git a/server/key.go b/server/key.go index 121235dba..1b0965b37 100644 --- a/server/key.go +++ b/server/key.go @@ -6,7 +6,6 @@ import ( "encoding/json" "errors" "fmt" - "io" "os" "os/user" "time" @@ -212,46 +211,6 @@ func AddKey(s *Server, password string, template *crypto.Key) (*Key, error) { return newkey, nil } -// Encrypt encrypts and authenticates data with the master key. Stored in -// ciphertext is IV || Ciphertext || MAC. Returns the ciphertext, which is -// extended if necessary. -func (k *Key) Encrypt(ciphertext, plaintext []byte) ([]byte, error) { - return crypto.Encrypt(k.master, ciphertext, plaintext) -} - -// EncryptTo encrypts and authenticates data with the master key. The returned -// io.Writer writes IV || Ciphertext || MAC. -func (k *Key) EncryptTo(wr io.Writer) io.WriteCloser { - return crypto.EncryptTo(k.master, wr) -} - -// Decrypt verifes and decrypts the ciphertext with the master key. Ciphertext -// must be in the form IV || Ciphertext || MAC. -func (k *Key) Decrypt(plaintext, ciphertext []byte) ([]byte, error) { - return crypto.Decrypt(k.master, plaintext, ciphertext) -} - -// DecryptFrom verifies and decrypts the ciphertext read from rd and makes it -// available on the returned Reader. Ciphertext must be in the form IV || -// Ciphertext || MAC. In order to correctly verify the ciphertext, rd is -// drained, locally buffered and made available on the returned Reader -// afterwards. If a MAC verification failure is observed, it is returned -// immediately. -func (k *Key) DecryptFrom(rd io.Reader) (io.ReadCloser, error) { - return crypto.DecryptFrom(k.master, rd) -} - -// Master returns the master keys for this repository. Only included for -// debug purposes. -func (k *Key) Master() *crypto.Key { - return k.master -} - -// User returns the user keys for this key. Only included for debug purposes. -func (k *Key) User() *crypto.Key { - return k.user -} - func (k *Key) String() string { if k == nil { return "" diff --git a/server/server.go b/server/server.go index 696dedee7..d8cc6dd98 100644 --- a/server/server.go +++ b/server/server.go @@ -574,7 +574,7 @@ func (s *Server) SearchKey(password string) error { return err } - s.key = key.Master() + s.key = key.master s.keyName = key.Name() return s.loadConfig(&s.Config) } @@ -595,7 +595,7 @@ func (s *Server) CreateMasterKey(password string) error { return err } - s.key = key.Master() + s.key = key.master s.keyName = key.Name() return s.createConfig() }