diff options
| author | Joseph Richey <joerichey@google.com> | 2017-07-17 13:06:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-17 13:06:15 -0700 |
| commit | 465e31bd92d70d983f45a186ce29b9ff9cd1fd40 (patch) | |
| tree | 70a4bef025ab0a8f9f9a8e79579e6efea1163e2d /actions/policy.go | |
| parent | e5cb8079aea929b1abd8d4279afc55983a5d0764 (diff) | |
| parent | 3bbb2b60498ec937ad736e698ce4afcb452a4644 (diff) | |
Merge pull request #18 from google/fix
Polices can now be directly unlocked with Protectors
Diffstat (limited to 'actions/policy.go')
| -rw-r--r-- | actions/policy.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/actions/policy.go b/actions/policy.go index 0d0ed02..1291e6b 100644 --- a/actions/policy.go +++ b/actions/policy.go @@ -248,6 +248,27 @@ func (policy *Policy) Unlock(optionFn OptionFunc, keyFn KeyFunc) error { return err } +// UnlockWithProtector uses an unlocked Protector to unlock a policy. An error +// is returned if the Protector is not yet unlocked or does not protect the +// policy. Does nothing if policy is already unlocked. +func (policy *Policy) UnlockWithProtector(protector *Protector) error { + if policy.key != nil { + return nil + } + if protector.key == nil { + return ErrLocked + } + idx, ok := policy.findWrappedKeyIndex(protector.Descriptor()) + if !ok { + return ErrNotProtected + } + + var err error + wrappedPolicyKey := policy.data.WrappedPolicyKeys[idx].WrappedKey + policy.key, err = crypto.Unwrap(protector.key, wrappedPolicyKey) + return err +} + // Lock wipes a Policy's internal Key. It should always be called after using a // Policy. This is often done with a defer statement. There is no effect if // called multiple times. |