src/HOL/Auth/WooLam.ML
author paulson
Wed, 24 Jun 1998 11:24:52 +0200
changeset 5076 fbc9d95b62ba
parent 4477 b3e5857d8d99
child 5114 c729d4c299c1
permissions -rw-r--r--
Ran isatool fixgoal
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/WooLam
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     2
    ID:         $Id$
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     5
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     6
Inductive relation "woolam" for the Woo-Lam protocol.
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     7
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     8
Simplified version from page 11 of
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
     9
  Abadi and Needham.  Prudent Engineering Practice for Cryptographic Protocols.
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    10
  IEEE Trans. S.E. 22(1), 1996, pages 6-15.
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    11
*)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    12
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    13
open WooLam;
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    14
4449
wenzelm
parents: 4091
diff changeset
    15
set proof_timing;
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    16
HOL_quantifiers := false;
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    17
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    18
AddEs spies_partsEs;
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    19
AddDs [impOfSubs analz_subset_parts];
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    20
AddDs [impOfSubs Fake_parts_insert];
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    21
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    22
2321
083912bc5775 Updated a comment
paulson
parents: 2283
diff changeset
    23
(*A "possibility property": there are traces that reach the end*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
    24
Goal 
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    25
 "!!A B. [| A ~= B; A ~= Server; B ~= Server |]   \
2283
68829cf138fc Swapping arguments of Crypt; removing argument lost
paulson
parents: 2274
diff changeset
    26
\        ==> EX NB. EX evs: woolam.               \
3466
30791e5a69c4 Corrected indentations and margins after the renaming of "set_of_list"
paulson
parents: 3465
diff changeset
    27
\              Says Server B (Crypt (shrK B) {|Agent A, Nonce NB|}) : set evs";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    28
by (REPEAT (resolve_tac [exI,bexI] 1));
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    29
by (rtac (woolam.Nil RS woolam.WL1 RS woolam.WL2 RS woolam.WL3 RS 
2516
4d68fbe6378b Now with Andy Gordon's treatment of freshness to replace newN/K
paulson
parents: 2451
diff changeset
    30
          woolam.WL4 RS woolam.WL5) 2);
3471
cd37ec057028 Now the possibility proof calls the appropriate tactic
paulson
parents: 3466
diff changeset
    31
by possibility_tac;
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    32
result();
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    33
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    34
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    35
(**** Inductive proofs about woolam ****)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    36
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    37
(*Nobody sends themselves messages*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
    38
Goal "!!evs. evs : woolam ==> ALL A X. Says A A X ~: set evs";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    39
by (etac woolam.induct 1);
4477
b3e5857d8d99 New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents: 4470
diff changeset
    40
by Auto_tac;
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    41
qed_spec_mp "not_Says_to_self";
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    42
Addsimps [not_Says_to_self];
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    43
AddSEs   [not_Says_to_self RSN (2, rev_notE)];
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    44
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    45
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    46
(** For reasoning about the encrypted portion of messages **)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    47
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
    48
Goal "!!evs. Says A' B X : set evs ==> X : analz (spies evs)";
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    49
by (etac (Says_imp_spies RS analz.Inj) 1);
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    50
qed "WL4_analz_spies";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    51
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    52
bind_thm ("WL4_parts_spies",
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    53
          WL4_analz_spies RS (impOfSubs analz_subset_parts));
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    54
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    55
(*For proving the easier theorems about X ~: parts (spies evs) *)
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
    56
fun parts_induct_tac i = 
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
    57
    etac woolam.induct i  THEN 
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    58
    forward_tac [WL4_parts_spies] (i+5)  THEN
3471
cd37ec057028 Now the possibility proof calls the appropriate tactic
paulson
parents: 3466
diff changeset
    59
    prove_simple_subgoals_tac 1;
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    60
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    61
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    62
(** Theorems of the form X ~: parts (spies evs) imply that NOBODY
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    63
    sends messages containing X! **)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    64
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    65
(*Spy never sees another agent's shared key! (unless it's bad at start)*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
    66
Goal 
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    67
 "!!evs. evs : woolam ==> (Key (shrK A) : parts (spies evs)) = (A : bad)";
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
    68
by (parts_induct_tac 1);
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    69
by (Blast_tac 1);
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    70
qed "Spy_see_shrK";
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    71
Addsimps [Spy_see_shrK];
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    72
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
    73
Goal 
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
    74
 "!!evs. evs : woolam ==> (Key (shrK A) : analz (spies evs)) = (A : bad)";
4477
b3e5857d8d99 New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents: 4470
diff changeset
    75
by Auto_tac;
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    76
qed "Spy_analz_shrK";
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    77
Addsimps [Spy_analz_shrK];
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    78
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    79
AddSDs [Spy_see_shrK RSN (2, rev_iffD1), 
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    80
	Spy_analz_shrK RSN (2, rev_iffD1)];
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    81
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    82
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    83
(**** Autheticity properties for Woo-Lam ****)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    84
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    85
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    86
(*** WL4 ***)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    87
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    88
(*If the encrypted message appears then it originated with Alice*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
    89
Goal 
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    90
 "!!evs. [| Crypt (shrK A) (Nonce NB) : parts (spies evs);  \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    91
\           A ~: bad;  evs : woolam |]                      \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    92
\        ==> EX B. Says A B (Crypt (shrK A) (Nonce NB)) : set evs";
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    93
by (etac rev_mp 1);
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
    94
by (parts_induct_tac 1);
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    95
by (ALLGOALS Blast_tac);
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
    96
qed "NB_Crypt_imp_Alice_msg";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    97
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    98
(*Guarantee for Server: if it gets a message containing a certificate from 
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
    99
  Alice, then she originated that certificate.  But we DO NOT know that B
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   100
  ever saw it: the Spy may have rerouted the message to the Server.*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
   101
Goal 
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   102
 "!!evs. [| Says B' Server {|Agent A, Agent B, Crypt (shrK A) (Nonce NB)|} \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   103
\             : set evs;                                                   \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   104
\           A ~: bad;  evs : woolam |]                                     \
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3121
diff changeset
   105
\        ==> EX B. Says A B (Crypt (shrK A) (Nonce NB)) : set evs";
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   106
by (blast_tac (claset() addSIs [NB_Crypt_imp_Alice_msg]) 1);
2321
083912bc5775 Updated a comment
paulson
parents: 2283
diff changeset
   107
qed "Server_trusts_WL4";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   108
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   109
AddDs [Server_trusts_WL4];
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   110
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   111
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   112
(*** WL5 ***)
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   113
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   114
(*Server sent WL5 only if it received the right sort of message*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
   115
Goal 
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   116
 "!!evs. [| Says Server B (Crypt (shrK B) {|Agent A, NB|}) : set evs;      \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   117
\           evs : woolam |]                                                \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   118
\        ==> EX B'. Says B' Server {|Agent A, Agent B, Crypt (shrK A) NB|} \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   119
\               : set evs";
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   120
by (etac rev_mp 1);
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
   121
by (parts_induct_tac 1);
3121
cbb6c0c1c58a Conversion to use blast_tac (with other improvements)
paulson
parents: 2637
diff changeset
   122
by (ALLGOALS Blast_tac);
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   123
qed "Server_sent_WL5";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   124
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   125
AddDs [Server_sent_WL5];
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   126
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   127
(*If the encrypted message appears then it originated with the Server!*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
   128
Goal 
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   129
 "!!evs. [| Crypt (shrK B) {|Agent A, NB|} : parts (spies evs);  \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   130
\           B ~: bad;  evs : woolam |]                           \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   131
\        ==> Says Server B (Crypt (shrK B) {|Agent A, NB|}) : set evs";
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   132
by (etac rev_mp 1);
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
   133
by (parts_induct_tac 1);
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   134
by (Blast_tac 1);
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   135
qed_spec_mp "NB_Crypt_imp_Server_msg";
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   136
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   137
(*Guarantee for B.  If B gets the Server's certificate then A has encrypted
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   138
  the nonce using her key.  This event can be no older than the nonce itself.
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   139
  But A may have sent the nonce to some other agent and it could have reached
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   140
  the Server via the Spy.*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
   141
Goal 
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3121
diff changeset
   142
 "!!evs. [| Says S B (Crypt (shrK B) {|Agent A, Nonce NB|}): set evs; \
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
   143
\           A ~: bad;  B ~: bad;  evs : woolam  |]                  \
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3121
diff changeset
   144
\        ==> EX B. Says A B (Crypt (shrK A) (Nonce NB)) : set evs";
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   145
by (blast_tac (claset() addSDs [NB_Crypt_imp_Server_msg]) 1);
2321
083912bc5775 Updated a comment
paulson
parents: 2283
diff changeset
   146
qed "B_trusts_WL5";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   147
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   148
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   149
(*B only issues challenges in response to WL1.  Not used.*)
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
   150
Goal 
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   151
 "!!evs. [| Says B A (Nonce NB) : set evs;  B ~= Spy;  evs : woolam |]  \
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   152
\        ==> EX A'. Says A' B (Agent A) : set evs";
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   153
by (etac rev_mp 1);
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
   154
by (parts_induct_tac 1);
3121
cbb6c0c1c58a Conversion to use blast_tac (with other improvements)
paulson
parents: 2637
diff changeset
   155
by (ALLGOALS Blast_tac);
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   156
qed "B_said_WL2";
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   157
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   158
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   159
(**CANNOT be proved because A doesn't know where challenges come from...
5076
fbc9d95b62ba Ran isatool fixgoal
paulson
parents: 4477
diff changeset
   160
Goal 
3683
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
   161
 "!!evs. [| A ~: bad;  B ~= Spy;  evs : woolam |]           \
aafe719dff14 Global change: lost->bad and sees Spy->spies
paulson
parents: 3519
diff changeset
   162
\    ==> Crypt (shrK A) (Nonce NB) : parts (spies evs) &  \
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
   163
\        Says B A (Nonce NB) : set evs                       \
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3121
diff changeset
   164
\        --> Says A B (Crypt (shrK A) (Nonce NB)) : set evs";
3519
ab0a9fbed4c0 Changing "lost" from a parameter of protocol definitions to a constant.
paulson
parents: 3471
diff changeset
   165
by (parts_induct_tac 1);
4470
af3239def3d4 Tidied using more default rules
paulson
parents: 4449
diff changeset
   166
by (Blast_tac 1);
3730
6933d20f335f Step_tac -> Safe_tac
paulson
parents: 3683
diff changeset
   167
by Safe_tac;
2274
1b1b46adc9b3 Addition of Woo-Lam protocol
paulson
parents:
diff changeset
   168
**)