Verify Is Authorized Opt eqv verify Is Authorized ok
Cedar.Thm.verifyIsAuthorizedOpt_eqv_verifyIsAuthorized_ok
Project documentation
This theorem covers the "happy path" -- showing that if optimized policy compilation succeeds, then verifyIsAuthorized and verifyIsAuthorizedOpt are equivalent.
Exact Lean statement
theorem verifyIsAuthorizedOpt_eqv_verifyIsAuthorized_ok {ps₁ ps₂ wps₁ wps₂ : Policies} {cpset₁ cpset₂ : CompiledPolicySet} {Γ : Validation.TypeEnv} {φ : Term → Term → Term} :
CompiledPolicySet.compile ps₁ Γ = .ok cpset₁ →
CompiledPolicySet.compile ps₂ Γ = .ok cpset₂ →
wellTypedPolicies ps₁ Γ = .ok wps₁ →
wellTypedPolicies ps₂ Γ = .ok wps₂ →
verifyIsAuthorized φ wps₁ wps₂ (SymEnv.ofTypeEnv Γ) ~ .ok (verifyIsAuthorizedOpt φ cpset₁ cpset₂)Formal artifact
Lean source
theorem verifyIsAuthorizedOpt_eqv_verifyIsAuthorized_ok {ps₁ ps₂ wps₁ wps₂ : Policies} {cpset₁ cpset₂ : CompiledPolicySet} {Γ : Validation.TypeEnv} {φ : Term → Term → Term} : CompiledPolicySet.compile ps₁ Γ = .ok cpset₁ → CompiledPolicySet.compile ps₂ Γ = .ok cpset₂ → wellTypedPolicies ps₁ Γ = .ok wps₁ → wellTypedPolicies ps₂ Γ = .ok wps₂ → verifyIsAuthorized φ wps₁ wps₂ (SymEnv.ofTypeEnv Γ) ~ .ok (verifyIsAuthorizedOpt φ cpset₁ cpset₂):= by simp [verifyIsAuthorized, verifyIsAuthorizedOpt, ResultAssertsEquiv] intro hcpset₁ hcpset₂ hwps₁ hwps₂ simp [enforcePairCompiledPolicySet_eqv_enforce_ok hcpset₁ hcpset₂ hwps₁ hwps₂] have henvs : cpset₁.εnv = cpset₂.εnv := by simp [cpset_compile_produces_the_right_env hcpset₁, cpset_compile_produces_the_right_env hcpset₂] simp [henvs] cases h₁ : SymCC.isAuthorized wps₁ (SymEnv.ofTypeEnv Γ) <;> simp case error e => simp_all only [CompiledPolicySet.compile, Except.mapError, Except.bind_ok] rw [Opt.isAuthorized.correctness] at hcpset₁ simp [h₁] at hcpset₁ case ok t => have h₃ := (cpset_compile_produces_the_right_term hcpset₁ hwps₁).symm ; simp [h₁] at h₃ ; subst t cases h₂ : SymCC.isAuthorized wps₂ (SymEnv.ofTypeEnv Γ) <;> simp case error e => simp_all only [CompiledPolicySet.compile, Except.mapError, Except.bind_ok] rw [Opt.isAuthorized.correctness] at hcpset₂ simp [h₂] at hcpset₂ case ok t => have h₃ := (cpset_compile_produces_the_right_term hcpset₂ hwps₂).symm ; simp [h₂] at h₃ ; subst t split <;> rename_i hnot · apply Asserts.Equiv.constantFalse <;> simp [hnot] · apply Asserts.Equiv.rfl- Project
- Cedar Specification
- License
- Apache-2.0
- Commit
- 3f093947b8ae
- Source
- cedar-lean/Cedar/Thm/SymCC/Opt/Verifier.lean:97-126
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Find? ext
Cedar.Data.Map.find?_ext
Plain-language statement
Two well-formed maps are equal if they have the same find? for every key.
Source project: Cedar Specification
Person-level attribution pending.
Find? notmem keys
Cedar.Data.Map.find?_notmem_keys
Plain-language statement
Inverse of find?_mem_toList, except that this requires wf
Source project: Cedar Specification
Person-level attribution pending.
Find? some iff in values
Cedar.Data.Map.find?_some_iff_in_values
Plain-language statement
The mp direction of this does not need the wf precondition and, in fact, is available separately as find?_some_implies_in_values above
Source project: Cedar Specification
Person-level attribution pending.