Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  NS_Public.thy

  Sprache: Isabelle
 

(*  Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
  Copyright 1996 University of Cambridge
 
 Inductive relation "ns_public" for the Needham-Schroeder Public-Key protocol.
 Version incorporating Lowe's fix (inclusion of B's identity in round 2).
*)
theory NS_Public imports Public begin(*>*)

sectionModelling the Protocol \label{sec:modelling}

text_raw 
 \begin{figure}
 \begin{isabelle}
 

inductive_set ns_public :: "event list set"
  where

   Nil:  "[] ns_public"


 | Fake: "[evsf ns_public; X synth (analz (knows Spy evsf))]
          ==> Says Spy B X # evsf ns_public"


 | NS1:  "[evs1 ns_public; Nonce NA used evs1]
          ==> Says A B (Crypt (pubK B) {Nonce NA, Agent A})
                 # evs1 ns_public"


 | NS2:  "[evs2 ns_public; Nonce NB used evs2;
           Says A' B (Crypt (pubK B) {Nonce NA, Agent A}) set evs2]
          ==> Says B A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B})
                # evs2 ns_public"


 | NS3:  "[evs3 ns_public;
           Says A B (Crypt (pubK B) {Nonce NA, Agent A}) set evs3;
           Says B' A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B})
               set evs3]
          ==> Says A B (Crypt (pubK B) (Nonce NB)) # evs3 ns_public"

text_raw 
 \end{isabelle}
 \caption{An Inductive Protocol Definition}\label{fig:ns_public}
 \end{figure}
 

text 
 Let us formalize the Needham-Schroeder public-key protocol, as corrected by
 Lowe:
 \begin{alignat*%
 }{2}
  &1.&\quad A\to B &: \comp{Na,A}\sb{Kb} \\
  &2.&\quad B\to A &: \comp{Na,Nb,B}\sb{Ka} \\
  &3.&\quad A\to B &: \comp{Nb}\sb{Kb}
 \end{alignat*%
 }
 
 Each protocol step is specified by a rule of an inductive definition. An
 event trace has type event list,
ns_public to be a set of such traces.

Figure~\ref{fig:ns_public} presents the inductive definition.  The
Nil rule introduces the empty trace.  The Fake rule models the
adversary's sending a message built from components taken from past
traffic, expressed using the functions synth and
analz
The next three rules model how honest agents would perform the three
protocol steps.  

Here is a detailed explanation of rule NS2.
A trace containing an event of the form
@{term [display,indent=5] "Says A' B (Crypt (pubK B) {Nonce NA, Agent A})"}
may be extended by an event of the form
@{term [display,indent=5] "Says B A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B})"}
where NB is a fresh nonce: 🍋Nonce NB used evs2.
Writing the sender as A' indicates that B does not 
know who sent the message.  Calling the trace variable evs2 rather
than simply evs helps us know where we are in a proof after many
case-splits: every subgoal mentioning evs2 involves message~2 of the
protocol.

Benefits of this approach are simplicity and clarity.  The semantic model
is set theory, proofs are by induction and the translation from the informal
notation to the inductive rules is straightforward. 


sectionProving Elementary Properties \label{sec:regularity}

(*<*)
declare knows_Spy_partsEs [elim]
declare analz_subset_parts [THEN subsetD, dest]
declare Fake_parts_insert [THEN subsetD, dest]

(*A "possibility property": there are traces that reach the end*)
lemma "NB. evs ns_public. Says A B (Crypt (pubK B) (Nonce NB)) set evs"
apply (intro exI bexI)
apply (rule_tac [2] ns_public.Nil [THEN ns_public.NS1, THEN ns_public.NS2,
                                   THEN ns_public.NS3])
by possibility


(**** Inductive proofs about ns_public ****)

(** Theorems of the form X \<notin> parts (knows Spy evs) imply that NOBODY
    sends messages containing X! **)

(*Spy never sees another agent's private key! (unless it's bad at start)*)
(*>*)

text 
 Secrecy properties can be hard to prove. The conclusion of a typical
 secrecy theorem is
 🍋X analz (knows Spy evs).
having to reason about analz, or less formally, showing that the spy
can never learn~X.  Much easier is to prove that X can never
occur at all.  Such \emph{regularity} properties are typically expressed
using parts rather than analz.

The following lemma states that A's private key is potentially
known to the spy if and only if A belongs to the set bad of
compromised agents.  The statement uses parts: the very presence of
A's private key in a message, whether protected by encryption or
not, is enough to confirm that A is compromised.  The proof, like
nearly all protocol proofs, is by induction over traces.


lemma Spy_see_priK [simp]:
      "evs ns_public
       ==> (Key (priK A) parts (knows Spy evs)) = (A bad)"
apply (erule ns_public.induct, simp_all)
txt 
 The induction yields five subgoals, one for each rule in the definition of
 ns_public.
(rule Nil), is preserved by each of the legitimate protocol steps (rules
NS1--3), and even is preserved in the face of anything the
spy can do (rule Fake).  

The proof is trivial.  No legitimate protocol rule sends any keys
at all, so only Fake is relevant. Indeed, simplification leaves
only the Fake case, as indicated by the variable name evsf:
@{subgoals[display,indent=0,margin=65]}

by blast
(*<*)
lemma Spy_analz_priK [simp]:
      "evs ns_public ==> (Key (priK A) analz (knows Spy evs)) = (A bad)"
by auto
(*>*)

text 
 The Fake c
🍋priK A is in the extended trace then either (1) it was already in the
original trace or (2) it was
generated by the spy, who must have known this key already. 
Either way, the induction hypothesis applies.

\emph{Unicity} lemmas are regularity lemmas stating that specified items
can occur only once in a trace.  The following lemma states that a nonce
cannot be used both as $Na$ and as $Nb$ unless
it is known to the spy.  Intuitively, it holds because honest agents
always choose fresh values as nonces; only the spy might reuse a value,
and he doesn't know this particular value.  The proof script is short:
induction, simplification, blast.  The first line uses the rule
rev_mp to prepare the induction by moving two assumptions into the 
induction formula.


lemma no_nonce_NS1_NS2:
    "[Crypt (pubK C) {NA', Nonce NA, Agent D} parts (knows Spy evs);
      Crypt (pubK B) {Nonce NA, Agent A} parts (knows Spy evs);
      evs ns_public]
     ==> Nonce NA analz (knows Spy evs)"
apply (erule rev_mp, erule rev_mp)
apply (erule ns_public.induct, simp_all)
apply (blast intro: analz_insertI)+
done

text 
 The following unicity lemma states that, if \isa{NA} is secret, then its
 appearance in any instance of message~1 determines the other components.
 The proof is similar to the previous one.
 

lemma unique_NA:
     "[Crypt(pubK B) {Nonce NA, Agent A } parts(knows Spy evs);
       Crypt(pubK B') {Nonce NA, Agent A'} parts(knows Spy evs);
       Nonce NA analz (knows Spy evs); evs ns_public]
      ==> A=A' B=B'"
(*<*)
apply (erule rev_mp, erule rev_mp, erule rev_mp)
apply (erule ns_public.induct, simp_all)
(*Fake, NS1*)
apply (blast intro: analz_insertI)+
done
(*>*)

sectionProving Secrecy Theorems \label{sec:secrecy}

(*<*)
(*Secrecy: Spy does not see the nonce sent in msg NS1 if A and B are secure
  The major premise "Says A B ..." makes it a dest-rule, so we use
  (erule rev_mp) rather than rule_format. *)
theorem Spy_not_see_NA:
      "[Says A B (Crypt(pubK B) {Nonce NA, Agent A}) set evs;
        A bad; B bad; evs ns_public]
       ==> Nonce NA analz (knows Spy evs)"
apply (erule rev_mp)
apply (erule ns_public.induct, simp_all)
apply spy_analz
apply (blast dest: unique_NA intro: no_nonce_NS1_NS2)+
done


(*Authentication for A: if she receives message 2 and has used NA
  to start a run, then B has sent message 2.*)
lemma A_trusts_NS2_lemma [rule_format]:
   "[A bad; B bad; evs ns_public]
    ==> Crypt (pubK A) {Nonce NA, Nonce NB, Agent B} parts (knows Spy evs)
        Says A B (Crypt(pubK B) {Nonce NA, Agent A}) set evs
        Says B A (Crypt(pubK A) {Nonce NA, Nonce NB, Agent B}) set evs"
apply (erule ns_public.induct, simp_all)
(*Fake, NS1*)
apply (blast dest: Spy_not_see_NA)+
done

theorem A_trusts_NS2:
     "[Says A B (Crypt(pubK B) {Nonce NA, Agent A}) set evs;
       Says B' A (Crypt(pubK A) {Nonce NA, Nonce NB, Agent B}) set evs;
       A bad; B bad; evs ns_public]
      ==> Says B A (Crypt(pubK A) {Nonce NA, Nonce NB, Agent B}) set evs"
by (blast intro: A_trusts_NS2_lemma)


(*If the encrypted message appears then it originated with Alice in NS1*)
lemma B_trusts_NS1 [rule_format]:
     "evs ns_public
      ==> Crypt (pubK B) {Nonce NA, Agent A} parts (knows Spy evs)
          Nonce NA analz (knows Spy evs)
          Says A B (Crypt (pubK B) {Nonce NA, Agent A}) set evs"
apply (erule ns_public.induct, simp_all)
(*Fake*)
apply (blast intro!: analz_insertI)
done



(*** Authenticity properties obtained from NS2 ***)

(*Unicity for NS2: nonce NB identifies nonce NA and agents A, B
  [unicity of B makes Lowe's fix work]
  [proof closely follows that for unique_NA] *)

lemma unique_NB [dest]:
     "[Crypt(pubK A) {Nonce NA, Nonce NB, Agent B} parts(knows Spy evs);
       Crypt(pubK A') {Nonce NA', Nonce NB, Agent B'} parts(knows Spy evs);
       Nonce NB analz (knows Spy evs); evs ns_public]
      ==> A=A' NA=NA' B=B'"
apply (erule rev_mp, erule rev_mp, erule rev_mp)
apply (erule ns_public.induct, simp_all)
(*Fake, NS2*)
apply (blast intro: analz_insertI)+
done
(*>*)

text 
 The secrecy theorems for Bob (the second participant) are especially
 important because they fail for the original protocol. The following
 theorem states that if Bob sends message~2 to Alice, and both agents are
 uncompromised, then Bob's nonce will never reach the spy.
 

theorem Spy_not_see_NB [dest]:
 "[Says B A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B}) set evs;
   A bad; B bad; evs ns_public]
  ==> Nonce NB analz (knows Spy evs)"
txt 
 To prove it, we must formulate the induction properly (one of the
 assumptions mentions~evs),


apply (erule rev_mp, erule ns_public.induct, simp_all)
(*<*)
apply spy_analz
defer
apply (blast intro: no_nonce_NS1_NS2)
apply (blast intro: no_nonce_NS1_NS2)
(*>*)

txt 
 The proof states are too complicated to present in full.
 Let's examine the simplest subgoal, that for message~1. The following
 event has just occurred:
 \[ 1.\quad A'\to B' : \comp{Na',A'}\sb{Kb'} \]
 The variables above have been primed because this step
 belongs to a different run from that referred to in the theorem
 statement --- the theorem
 refers to a past instance of message~2, while this subgoal
 concerns message~1 being sent just now.
 In the Isabelle subgoal, instead of primed variables like $B'$ and $Na'$
 we have Ba a
@{subgoals[display,indent=0]}
The simplifier has used a 
default simplification rule that does a case
analysis for each encrypted message on whether or not the decryption key
is compromised.
@{named_thms [display,indent=0,margin=50] analz_Crypt_if [no_vars] (analz_Crypt_if)}
The simplifier has also used Spy_see_priK, proved in
{\S}\ref{sec:regularity} above, to yield 🍋Ba bad.

Recall that this subgoal concerns the case
where the last message to be sent was
\[ 1.\quad  A'\to B'  : \comp{Na',A'}\sb{Kb'}. \]
This message can compromise $Nb$ only if $Nb=Na'$ and $B'$ is compromised,
allowing the spy to decrypt the message.  The Isabelle subgoal says
precisely this, if we allow for its choice of variable names.
Proving 🍋NB NAa is easy: NB was
sent earlier, while NAa is fresh; formally, we have
the assumption 🍋Nonce NAa used evs1

Note that our reasoning concerned B's participation in another
run.  Agents may engage in several runs concurrently, and some attacks work
by interleaving the messages of two runs.  With model checking, this
possibility can cause a state-space explosion, and for us it
certainly complicates proofs.  The biggest subgoal concerns message~2.  It
splits into several cases, such as whether or not the message just sent is
the very message mentioned in the theorem statement.
Some of the cases are proved by unicity, others by
the induction hypothesis.  For all those complications, the proofs are
automatic by blast with the theorem no_nonce_NS1_NS2.

The remaining theorems about the protocol are not hard to prove.  The
following one asserts a form of \emph{authenticity}: if
B has sent an instance of message~2 to~A and has received the
expected reply, then that reply really originated with~A.  The
proof is a simple induction.


(*<*)
by (blast intro: no_nonce_NS1_NS2)

lemma B_trusts_NS3_lemma [rule_format]:
     "[A bad; B bad; evs ns_public] ==>
      Crypt (pubK B) (Nonce NB) parts (knows Spy evs)
      Says B A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B}) set evs
      Says A B (Crypt (pubK B) (Nonce NB)) set evs"
by (erule ns_public.induct, auto)
(*>*)
theorem B_trusts_NS3:
 "[Says B A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B}) set evs;
   Says A' B (Crypt (pubK B) (Nonce NB)) set evs;
   A bad; B bad; evs ns_public]
  ==> Says A B (Crypt (pubK B) (Nonce NB)) set evs"
(*<*)
by (blast intro: B_trusts_NS3_lemma)

(*** Overall guarantee for B ***)


(*If NS3 has been sent and the nonce NB agrees with the nonce B joined with
  NA, then A initiated the run using NA.*)
theorem B_trusts_protocol [rule_format]:
     "[A bad; B bad; evs ns_public] ==>
      Crypt (pubK B) (Nonce NB) parts (knows Spy evs)
      Says B A (Crypt (pubK A) {Nonce NA, Nonce NB, Agent B}) set evs
      Says A B (Crypt (pubK B) {Nonce NA, Agent A}) set evs"
by (erule ns_public.induct, auto)
(*>*)

text 
 From similar assumptions, we can prove that A s
run by sending an instance of message~1 involving the nonce~NA\@. 
For this theorem, the conclusion is 
@{thm [display] (concl) B_trusts_protocol [no_vars]}
Analogous theorems can be proved for~A, stating that nonce~NA
remains secret and that message~2 really originates with~B.  Even the
flawed protocol establishes these properties for~A;
the flaw only harms the second participant.

\medskip

Detailed information on this protocol verification technique can be found
elsewhere~🍋"paulson-jcs", including proofs of an Internet
protocol~🍋"paulson-tls".  We must stress that the protocol discussed
in this chapter is trivial.  There are only three messages; no keys are
exchanged; we merely have to prove that encrypted data remains secret. 
Real world protocols are much longer and distribute many secrets to their
participants.  To be realistic, the model has to include the possibility
of keys being lost dynamically due to carelessness.  If those keys have
been used to encrypt other sensitive information, there may be cascading
losses.  We may still be able to establish a bound on the losses and to
prove that other protocol runs function
correctly~🍋"paulson-yahalom".  Proofs of real-world protocols follow
the strategy illustrated above, but the subgoals can
be much bigger and there are more of them.
\index{protocols!security|)}


(*<*)end(*>*)

Messung V0.5 in Prozent
C=61 H=93 G=78

¤ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet am  2026-04-27) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge