mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
a179a24c48
All packages, except for `cmd` and `internal`, have been moved into a new `v1` root package. Old packages are kept for backwards-compatibility reasons. All contained code is replaced with simple type aliases and proxy functions to `v1` implementations. Old packages default to the Rego v0 syntax, new `v1` packages default to the Rego v1 syntax. Signed-off-by: Johan Fylling <johan.dev@fylling.se>
26 lines
651 B
Go
26 lines
651 B
Go
package keys
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
v1 "github.com/open-policy-agent/opa/v1/keys"
|
|
)
|
|
|
|
// IsSupportedAlgorithm true if provided alg is supported
|
|
func IsSupportedAlgorithm(alg string) bool {
|
|
return v1.IsSupportedAlgorithm(alg)
|
|
}
|
|
|
|
// Config holds the keys used to sign or verify bundles and tokens
|
|
type Config = v1.Config
|
|
|
|
// NewKeyConfig return a new Config
|
|
func NewKeyConfig(key, alg, scope string) (*Config, error) {
|
|
return v1.NewKeyConfig(key, alg, scope)
|
|
}
|
|
|
|
// ParseKeysConfig returns a map containing the key and the signing algorithm
|
|
func ParseKeysConfig(raw json.RawMessage) (map[string]*Config, error) {
|
|
return v1.ParseKeysConfig(raw)
|
|
}
|