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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/*
Copyright The containerd Authors.
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 main
import (
b64 "encoding/base64"
"errors"
"os"
"path/filepath"
"strings"
encconfig "github.com/containers/ocicrypt/config"
cryptUtils "github.com/containers/ocicrypt/utils"
)
// getDecryptionKeys reads the keys from the given directory
func getDecryptionKeys(keysPath string) (encconfig.CryptoConfig, error) {
var cc encconfig.CryptoConfig
base64Keys := make([]string, 0)
walkFn := func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() {
return nil
}
// Handle symlinks
if info.Mode()&os.ModeSymlink == os.ModeSymlink {
return errors.New("Symbolic links not supported in decryption keys paths")
}
privateKey, err := os.ReadFile(path)
if err != nil {
return err
}
// TODO - Remove the need to covert to base64. The ocicrypt library
// should provide a method to directly process the private keys
sEnc := b64.StdEncoding.EncodeToString(privateKey)
base64Keys = append(base64Keys, sEnc)
return nil
}
err := filepath.Walk(keysPath, walkFn)
if err != nil {
return cc, err
}
sortedDc, err := cryptUtils.SortDecryptionKeys(strings.Join(base64Keys, ","))
if err != nil {
return cc, err
}
cc = encconfig.InitDecryption(sortedDc)
return cc, nil
}
func combineDecryptionConfigs(dc1, dc2 *encconfig.DecryptConfig) *encconfig.DecryptConfig {
cc1 := encconfig.CryptoConfig{
DecryptConfig: dc1,
}
cc2 := encconfig.CryptoConfig{
DecryptConfig: dc2,
}
cc := encconfig.CombineCryptoConfigs([]encconfig.CryptoConfig{cc1, cc2})
return cc.DecryptConfig
}
|