Translated library Event
Lean Action CI / build (push) Has been cancelled

This commit is contained in:
Your Name
2026-01-17 10:46:31 +01:00
parent 2c7e00905a
commit 61616dc3b1
6 changed files with 35 additions and 27 deletions
+2 -15
View File
@@ -1,17 +1,4 @@
-- This module serves as the root of the `InductiveVerification` library.
-- Import modules here that should be built as part of the library.
import InductiveVerification.Basic
inductive Agent
| Server : Agent
| Friend : Nat Agent
| Spy : Agent
inductive Msg
| Agent : Agent Msg -- Agent names
| Number : Nat Msg -- Ordinary integers, timestamps, ...
| Nonce : Nat Msg -- Unguessable nonces
| Key : Key Msg -- Crypto keys
| Hash : Msg Msg -- Hashing
| MPair : Msg Msg Msg -- Compound messages
| Crypt : Key Msg Msg -- Encryption, public- or shared-key
import InductiveVerification.Message
import InductiveVerification.Event