src/HOL/Auth/Yahalom.thy
author paulson
Fri, 13 Sep 1996 13:16:57 +0200
changeset 1995 c80e58e78d9c
parent 1985 84cf16192e03
child 2032 1bbf1bdcaf56
permissions -rw-r--r--
Addition of Yahalom protocol
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
     1
(*  Title:      HOL/Auth/Yahalom
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     2
    ID:         $Id$
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     5
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     6
Inductive relation "yahalom" for the Yahalom protocol.
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     7
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     8
From page 257 of
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
     9
  Burrows, Abadi and Needham.  A Logic of Authentication.
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    10
  Proc. Royal Soc. 426 (1989)
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    11
*)
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    12
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    13
Yahalom = Shared + 
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    14
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    15
consts  yahalom   :: "event list set"
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    16
inductive yahalom
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    17
  intrs 
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    18
         (*Initial trace is empty*)
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    19
    Nil  "[]: yahalom"
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    20
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    21
         (*The enemy MAY say anything he CAN say.  We do not expect him to
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    22
           invent new nonces here, but he can also use NS1.  Common to
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    23
           all similar protocols.*)
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    24
    Fake "[| evs: yahalom;  B ~= Enemy;  X: synth (analz (sees Enemy evs)) |]
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    25
          ==> Says Enemy B X  # evs : yahalom"
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    26
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    27
         (*Alice initiates a protocol run*)
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    28
    YM1  "[| evs: yahalom;  A ~= B |]
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    29
          ==> Says A B {|Agent A, Nonce (newN evs)|} # evs : yahalom"
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    30
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    31
         (*Bob's response to Alice's message.  Bob doesn't know who 
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    32
	   the sender is, hence the A' in the sender field.*)
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    33
    YM2  "[| evs: yahalom;  B ~= Server;
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    34
             Says A' B {|Agent A, Nonce NA|} : set_of_list evs |]
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    35
          ==> Says B Server 
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    36
                  {|Agent B, 
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    37
                    Crypt {|Agent A, Nonce NA, Nonce (newN evs)|} (shrK B)|}
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    38
                 # evs : yahalom"
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    39
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    40
         (*The Server receives Bob's message.  He responds by sending a
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    41
            new session key to Alice, with a packet for forwarding to Bob.*)
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    42
    YM3  "[| evs: yahalom;  A ~= Server;
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    43
             Says B' Server 
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    44
                  {|Agent B, Crypt {|Agent A, Nonce NA, Nonce NB|} (shrK B)|}
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    45
               : set_of_list evs |]
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    46
          ==> Says Server A
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    47
                  {|Crypt {|Agent B, Key (newK evs), 
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    48
                            Nonce NA, Nonce NB|} (shrK A),
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    49
                    Crypt {|Agent A, Key (newK evs)|} (shrK B)|}
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    50
                 # evs : yahalom"
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    51
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    52
         (*Alice receives the Server's (?) message, checks her Nonce, and
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    53
           uses the new session key to send Bob his Nonce.*)
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    54
    YM4  "[| evs: yahalom;  A ~= B;  
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    55
             Says S A {|Crypt {|Agent B, Key K, Nonce NA, Nonce NB|} (shrK A),
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    56
                        X|}
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    57
               : set_of_list evs;
1995
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    58
             Says A B {|Agent A, Nonce NA|} : set_of_list evs |]
c80e58e78d9c Addition of Yahalom protocol
paulson
parents: 1985
diff changeset
    59
          ==> Says A B {|X, Crypt (Nonce NB) K|} # evs : yahalom"
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    60
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents:
diff changeset
    61
end