diff options
author | lloyd <[email protected]> | 2009-07-15 15:31:08 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-15 15:31:08 +0000 |
commit | 1172c616fa849af893c1935b8b1dee085f8aaac8 (patch) | |
tree | 48a5308fb8d40fbea9216f7007678543d7a59a4e /src/modes | |
parent | 6fd01228840942ad122d1adabb3f7971a4e3b244 (diff) |
Add a script that reads the output of print_deps.py and rewrites
the info.txt files with the right module dependencies.
Apply it across the codebase.
Diffstat (limited to 'src/modes')
-rw-r--r-- | src/modes/cbc/info.txt | 3 | ||||
-rw-r--r-- | src/modes/cts/info.txt | 4 | ||||
-rw-r--r-- | src/modes/eax/info.txt | 7 | ||||
-rw-r--r-- | src/modes/ecb/info.txt | 4 | ||||
-rw-r--r-- | src/modes/info.txt | 1 | ||||
-rw-r--r-- | src/modes/ofb/info.txt | 4 | ||||
-rw-r--r-- | src/modes/xts/info.txt | 5 |
7 files changed, 16 insertions, 12 deletions
diff --git a/src/modes/cbc/info.txt b/src/modes/cbc/info.txt index 6cc0e1a14..9dd6d827e 100644 --- a/src/modes/cbc/info.txt +++ b/src/modes/cbc/info.txt @@ -9,8 +9,7 @@ cbc.cpp cbc.h </add> + <requires> -modes mode_pad </requires> - diff --git a/src/modes/cts/info.txt b/src/modes/cts/info.txt index bfb26c987..26f5cae52 100644 --- a/src/modes/cts/info.txt +++ b/src/modes/cts/info.txt @@ -9,7 +9,7 @@ cts.cpp cts.h </add> + <requires> -modes +block </requires> - diff --git a/src/modes/eax/info.txt b/src/modes/eax/info.txt index 54890d6a2..a1757cada 100644 --- a/src/modes/eax/info.txt +++ b/src/modes/eax/info.txt @@ -10,7 +10,10 @@ eax.h eax_dec.cpp </add> + <requires> -modes +block +cmac +filters +mac </requires> - diff --git a/src/modes/ecb/info.txt b/src/modes/ecb/info.txt index 43ff1ac1c..6d4ce93a7 100644 --- a/src/modes/ecb/info.txt +++ b/src/modes/ecb/info.txt @@ -9,8 +9,8 @@ ecb.cpp ecb.h </add> + <requires> -modes +block mode_pad </requires> - diff --git a/src/modes/info.txt b/src/modes/info.txt index 6fc874bd6..e089e74a9 100644 --- a/src/modes/info.txt +++ b/src/modes/info.txt @@ -10,5 +10,6 @@ modebase.h </add> <requires> +block filters </requires> diff --git a/src/modes/ofb/info.txt b/src/modes/ofb/info.txt index 03cb23677..1b33c38d5 100644 --- a/src/modes/ofb/info.txt +++ b/src/modes/ofb/info.txt @@ -9,7 +9,7 @@ ofb.cpp ofb.h </add> + <requires> -modes +block </requires> - diff --git a/src/modes/xts/info.txt b/src/modes/xts/info.txt index 30d8f3496..6669c1184 100644 --- a/src/modes/xts/info.txt +++ b/src/modes/xts/info.txt @@ -9,7 +9,8 @@ xts.cpp xts.h </add> + <requires> -modes +block +filters </requires> - |