diff options
author | lloyd <[email protected]> | 2009-08-11 02:17:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-08-11 02:17:10 +0000 |
commit | 34eb8de4ed014ab8913bdb34b096d60880b1c14a (patch) | |
tree | da8f538f1655765317fb16df01523ce23bd09e6b /src/block | |
parent | 8a0385aab2f90e445e7f10bdaf0dff67921bd400 (diff) |
Add 'Distributed under the terms of the Botan license' notices to the .S
files. Were missed by the automated script that added them to the cpp/h
files, it appears.
Diffstat (limited to 'src/block')
-rw-r--r-- | src/block/serpent_ia32/serp_ia32_imp.S | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/block/serpent_ia32/serp_ia32_imp.S b/src/block/serpent_ia32/serp_ia32_imp.S index ddfcc7806..9e50f8cdc 100644 --- a/src/block/serpent_ia32/serp_ia32_imp.S +++ b/src/block/serpent_ia32/serp_ia32_imp.S @@ -1,7 +1,9 @@ -/************************************************* -* Serpent Source File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ +/* +* Serpent Source File +* (C) 1999-2007 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ #include <botan/asm_macr.h> @@ -436,9 +438,9 @@ START_LISTING(serp_ia32.S) XOR(C, ARRAY4(EDI, (4*N+2))) ; \ XOR(D, ARRAY4(EDI, (4*N+3))) ; -/************************************************* -* Serpent Encryption * -*************************************************/ +/* +* Serpent Encryption +*/ START_FUNCTION(botan_serpent_ia32_encrypt) SPILL_REGS() #define PUSHED 4 @@ -507,9 +509,9 @@ START_FUNCTION(botan_serpent_ia32_encrypt) #undef PUSHED END_FUNCTION(botan_serpent_ia32_encrypt) -/************************************************* -* Serpent Decryption * -*************************************************/ +/* +* Serpent Decryption +*/ START_FUNCTION(botan_serpent_ia32_decrypt) SPILL_REGS() #define PUSHED 4 @@ -578,9 +580,9 @@ START_FUNCTION(botan_serpent_ia32_decrypt) #undef PUSHED END_FUNCTION(botan_serpent_ia32_decrypt) -/************************************************* -* Serpent Key Schedule * -*************************************************/ +/* +* Serpent Key Schedule +*/ START_FUNCTION(botan_serpent_ia32_key_schedule) SPILL_REGS() #define PUSHED 4 |