Versions in this module Expand all Collapse all v0 v0.4.0 Oct 11, 2018 Changes in this version + type AESEncryptedStorage struct + func NewAESEncryptedStorage(filename string, key []byte) *AESEncryptedStorage + func (s *AESEncryptedStorage) Get(key string) string + func (s *AESEncryptedStorage) Put(key, value string) + type EphemeralStorage struct + func (s *EphemeralStorage) Get(key string) string + func (s *EphemeralStorage) Put(key, value string) + type Storage interface + Get func(key string) string + Put func(key, value string) + func NewEphemeralStorage() Storage