mirror of
https://github.com/kopia/kopia.git
synced 2026-05-11 00:04:46 -04:00
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package format
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/kopia/kopia/repo/blob"
|
|
)
|
|
|
|
// ChangePassword changes the repository password and rewrites
|
|
// `kopia.repository` & `kopia.blobcfg`.
|
|
func (m *Manager) ChangePassword(ctx context.Context, newPassword string) error {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
|
|
if !m.repoConfig.EnablePasswordChange {
|
|
return errors.New("password changes are not supported for repositories created using Kopia v0.8 or older")
|
|
}
|
|
|
|
newFormatEncryptionKey, err := m.j.DeriveFormatEncryptionKeyFromPassword(newPassword)
|
|
if err != nil {
|
|
return errors.Wrap(err, "unable to derive master key")
|
|
}
|
|
|
|
m.formatEncryptionKey = newFormatEncryptionKey
|
|
m.password = newPassword
|
|
|
|
if err := m.j.EncryptRepositoryConfig(m.repoConfig, newFormatEncryptionKey); err != nil {
|
|
return errors.Wrap(err, "unable to encrypt format bytes")
|
|
}
|
|
|
|
if err := m.j.WriteBlobCfgBlob(ctx, m.blobs, m.blobCfgBlob, newFormatEncryptionKey); err != nil {
|
|
return errors.Wrap(err, "unable to write blobcfg blob")
|
|
}
|
|
|
|
if err := m.j.WriteKopiaRepositoryBlob(ctx, m.blobs, m.blobCfgBlob); err != nil {
|
|
return errors.Wrap(err, "unable to write format blob")
|
|
}
|
|
|
|
m.cache.Remove(ctx, []blob.ID{KopiaRepositoryBlobID, KopiaBlobCfgBlobID})
|
|
|
|
return nil
|
|
}
|