-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_policy_encryption.go
66 lines (57 loc) · 2.16 KB
/
config_policy_encryption.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2024 Aerospike, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package backup
import (
"errors"
"fmt"
)
// Encryption modes
const (
// EncryptNone no encryption.
EncryptNone = "NONE"
// EncryptAES128 encryption using AES128 algorithm.
EncryptAES128 = "AES128"
// EncryptAES256 encryption using AES256 algorithm.
EncryptAES256 = "AES256"
)
// EncryptionPolicy contains backup encryption information.
type EncryptionPolicy struct {
// The path to the file containing the encryption key.
KeyFile *string `yaml:"key-file,omitempty" json:"key-file,omitempty"`
// The name of the environment variable containing the encryption key.
KeyEnv *string `yaml:"key-env,omitempty" json:"key-env,omitempty"`
// The secret keyword in Aerospike Secret Agent containing the encryption key.
KeySecret *string `yaml:"key-secret,omitempty" json:"key-secret,omitempty"`
// The encryption mode to be used (NONE, AES128, AES256)
Mode string `yaml:"mode,omitempty" json:"mode,omitempty" default:"NONE" enums:"NONE,AES128,AES256"`
}
// validate validates the encryption policy.
func (p *EncryptionPolicy) validate() error {
if p == nil {
return nil
}
if p.Mode != EncryptNone && p.Mode != EncryptAES128 && p.Mode != EncryptAES256 {
return fmt.Errorf("invalid encryption mode: %s", p.Mode)
}
if p.KeyFile == nil && p.KeyEnv == nil && p.KeySecret == nil {
return errors.New("encryption key location not specified")
}
// Only one parameter allowed to be set.
if (p.KeyFile != nil && p.KeyEnv != nil) ||
(p.KeyFile != nil && p.KeySecret != nil) ||
(p.KeyEnv != nil && p.KeySecret != nil) {
return fmt.Errorf("only one encryption key source may be specified")
}
return nil
}