mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-11 01:20:13 -04:00
Some checks are pending
build / Build for freebsd_386 (push) Waiting to run
build / Build for linux_386 (push) Waiting to run
build / Build for openbsd_386 (push) Waiting to run
build / Build for windows_386 (push) Waiting to run
build / Build for freebsd_amd64 (push) Waiting to run
build / Build for linux_amd64 (push) Waiting to run
build / Build for openbsd_amd64 (push) Waiting to run
build / Build for solaris_amd64 (push) Waiting to run
build / Build for windows_amd64 (push) Waiting to run
build / Build for freebsd_arm (push) Waiting to run
build / Build for linux_arm (push) Waiting to run
build / Build for linux_arm64 (push) Waiting to run
build / Build for darwin_amd64 (push) Waiting to run
build / Build for darwin_arm64 (push) Waiting to run
build / End-to-end Tests for linux_386 (push) Waiting to run
build / End-to-end Tests for windows_386 (push) Waiting to run
build / End-to-end Tests for darwin_amd64 (push) Waiting to run
build / End-to-end Tests for linux_amd64 (push) Waiting to run
build / End-to-end Tests for windows_amd64 (push) Waiting to run
Quick Checks / List files changed for pull request (push) Waiting to run
Quick Checks / Unit tests for linux_386 (push) Blocked by required conditions
Quick Checks / Unit tests for linux_amd64 (push) Blocked by required conditions
Quick Checks / Unit tests for windows_amd64 (push) Blocked by required conditions
Quick Checks / Unit tests for linux_arm (push) Blocked by required conditions
Quick Checks / Unit tests for darwin_arm64 (push) Blocked by required conditions
Quick Checks / Unit tests for linux_arm64 (push) Blocked by required conditions
Quick Checks / Race Tests (push) Blocked by required conditions
Quick Checks / End-to-end Tests (push) Blocked by required conditions
Quick Checks / Code Consistency Checks (push) Blocked by required conditions
Quick Checks / License Checks (push) Waiting to run
Website checks / List files changed for pull request (push) Waiting to run
Website checks / Build (push) Blocked by required conditions
Website checks / Test Installation Instructions (push) Blocked by required conditions
Signed-off-by: Christian Mesh <christianmesh1@gmail.com> Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org> Co-authored-by: Christian Mesh <christianmesh1@gmail.com>
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package external
|
|
|
|
import (
|
|
"github.com/opentofu/opentofu/internal/encryption/keyprovider"
|
|
"github.com/opentofu/opentofu/internal/encryption/method"
|
|
)
|
|
|
|
// Config is the configuration for the AES-GCM method.
|
|
type Config struct {
|
|
Keys *keyprovider.Output
|
|
EncryptCommand []string
|
|
DecryptCommand []string
|
|
}
|
|
|
|
// Build checks the validity of the configuration and returns a ready-to-use AES-GCM implementation.
|
|
func (c *Config) Build() (method.Method, error) {
|
|
if len(c.EncryptCommand) < 1 {
|
|
return nil, &method.ErrInvalidConfiguration{
|
|
Cause: &method.ErrCryptoFailure{
|
|
Message: "the encrypt_command option is required",
|
|
},
|
|
}
|
|
}
|
|
if len(c.EncryptCommand[0]) == 0 {
|
|
return nil, &method.ErrInvalidConfiguration{
|
|
Cause: &method.ErrCryptoFailure{
|
|
Message: "the first entry of encrypt_command must not be empty",
|
|
},
|
|
}
|
|
}
|
|
if len(c.DecryptCommand) < 1 {
|
|
return nil, &method.ErrInvalidConfiguration{
|
|
Cause: &method.ErrCryptoFailure{
|
|
Message: "the decrypt_command option is required",
|
|
},
|
|
}
|
|
}
|
|
if len(c.DecryptCommand[0]) == 0 {
|
|
return nil, &method.ErrInvalidConfiguration{
|
|
Cause: &method.ErrCryptoFailure{
|
|
Message: "the first entry of decrypt_command must not be empty",
|
|
},
|
|
}
|
|
}
|
|
return &command{
|
|
keys: c.Keys,
|
|
encryptCommand: c.EncryptCommand,
|
|
decryptCommand: c.DecryptCommand,
|
|
}, nil
|
|
}
|