package root import ( "context" "github.com/gopasspw/gopass/pkg/gopass" ) // Set encodes and write the ciphertext of one entry to disk. func (r *Store) Set(ctx context.Context, name string, sec gopass.Byter) error { store, name := r.getStore(name) return store.Set(ctx, name, sec) }