mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-02 18:44:49 -05:00
2d8fcd9bf4
Co-authored-by: Malte Poll <mp@edgeless.systems> Co-authored-by: katexochen <katexochen@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: Thomas Tendyck <tt@edgeless.systems> Co-authored-by: Benedict Schlueter <bs@edgeless.systems> Co-authored-by: leongross <leon.gross@rub.de> Co-authored-by: Moritz Eckert <m1gh7ym0@gmail.com>
33 lines
783 B
Go
33 lines
783 B
Go
package storage
|
|
|
|
import "context"
|
|
|
|
// MemMapStorage is the standard implementation of the Storage interface, storing keys in memory only.
|
|
type MemMapStorage struct {
|
|
dekPool map[string][]byte
|
|
}
|
|
|
|
// NewMemMapStorage creates and initialises a new MemMapStorage object.
|
|
func NewMemMapStorage() *MemMapStorage {
|
|
s := &MemMapStorage{
|
|
dekPool: make(map[string][]byte),
|
|
}
|
|
|
|
return s
|
|
}
|
|
|
|
// Get returns a DEK from MemMapStorage by key ID.
|
|
func (s *MemMapStorage) Get(ctx context.Context, keyID string) ([]byte, error) {
|
|
encDEK, ok := s.dekPool[keyID]
|
|
if ok {
|
|
return encDEK, nil
|
|
}
|
|
return nil, ErrDEKUnset
|
|
}
|
|
|
|
// Put saves a DEK to MemMapStorage by key ID.
|
|
func (s *MemMapStorage) Put(ctx context.Context, keyID string, encDEK []byte) error {
|
|
s.dekPool[keyID] = encDEK
|
|
return nil
|
|
}
|