src/HOL/Auth/NS_Shared.thy
author paulson
Wed, 21 Aug 1996 13:25:27 +0200
changeset 1934 58573e7041b4
child 1943 20574dca5a3e
permissions -rw-r--r--
Separation of theory Event into two parts: Shared for general shared-key material NS_Shared for the Needham-Schroeder shared-key protocol
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/NS_Shared
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     2
    ID:         $Id$
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     5
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     6
Inductive relation "ns_shared" for Needham-Schroeder Shared-Key protocol.
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     7
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     8
From page 247 of
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     9
  Burrows, Abadi and Needham.  A Logic of Authentication.
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    10
  Proc. Royal Soc. 426 (1989)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    11
*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    12
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    13
NS_Shared = Shared + 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    14
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    15
consts  ns_shared   :: "event list set"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    16
inductive ns_shared
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    17
  intrs 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    18
         (*Initial trace is empty*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    19
    Nil  "[]: ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    20
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    21
         (*The enemy MAY say anything he CAN say.  We do not expect him to
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    22
           invent new nonces here, but he can also use NS1.  Common to
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    23
           all similar protocols.*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    24
    Fake "[| evs: ns_shared;  B ~= Enemy;  X: synth (analz (sees Enemy evs))
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    25
          |] ==> (Says Enemy B X) # evs : ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    26
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    27
         (*Alice initiates a protocol run*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    28
    NS1  "[| evs: ns_shared;  A ~= Server
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    29
          |] ==> (Says A Server {|Agent A, Agent B, Nonce (newN evs)|}) 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    30
                 # evs : ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    31
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    32
         (*Server's response to Alice's message.
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    33
           !! It may respond more than once to A's request !!
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    34
	   Server doesn't know who the true sender is, hence the A' in
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    35
               the sender field.*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    36
    NS2  "[| evs: ns_shared;  A ~= B;  A ~= Server;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    37
             (Says A' Server {|Agent A, Agent B, Nonce NA|}) : set_of_list evs
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    38
          |] ==> (Says Server A 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    39
                  (Crypt {|Nonce NA, Agent B, Key (newK evs),   
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    40
                           (Crypt {|Key (newK evs), Agent A|} (serverKey B))|}
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    41
                   (serverKey A))) # evs : ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    42
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    43
          (*We can't assume S=Server.  Agent A "remembers" her nonce.
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    44
            May assume WLOG that she is NOT the Enemy: the Fake rule
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    45
            covers this case.  Can inductively show A ~= Server*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    46
    NS3  "[| evs: ns_shared;  A ~= B;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    47
             (Says S A (Crypt {|Nonce NA, Agent B, Key K, X|} (serverKey A))) 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    48
               : set_of_list evs;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    49
             A = Friend i;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    50
             (Says A Server {|Agent A, Agent B, Nonce NA|}) : set_of_list evs
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    51
          |] ==> (Says A B X) # evs : ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    52
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    53
         (*Bob's nonce exchange.  He does not know who the message came
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    54
           from, but responds to A because she is mentioned inside.*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    55
    NS4  "[| evs: ns_shared;  A ~= B;  
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    56
             (Says A' B (Crypt {|Key K, Agent A|} (serverKey B))) 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    57
               : set_of_list evs
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    58
          |] ==> (Says B A (Crypt (Nonce (newN evs)) K)) # evs : ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    59
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    60
         (*Alice responds with (Suc N), if she has seen the key before.*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    61
    NS5  "[| evs: ns_shared;  A ~= B;  
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    62
             (Says B' A (Crypt (Nonce N) K)) : set_of_list evs;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    63
             (Says S  A (Crypt {|Nonce NA, Agent B, Key K, X|} (serverKey A))) 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    64
               : set_of_list evs
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    65
          |] ==> (Says A B (Crypt (Nonce (Suc N)) K)) # evs : ns_shared"
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    66
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    67
end