aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-15 15:31:08 +0000
committerlloyd <[email protected]>2009-07-15 15:31:08 +0000
commit1172c616fa849af893c1935b8b1dee085f8aaac8 (patch)
tree48a5308fb8d40fbea9216f7007678543d7a59a4e /src/kdf
parent6fd01228840942ad122d1adabb3f7971a4e3b244 (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/kdf')
-rw-r--r--src/kdf/kdf1/info.txt7
-rw-r--r--src/kdf/kdf2/info.txt8
-rw-r--r--src/kdf/mgf1/info.txt8
-rw-r--r--src/kdf/ssl_prf/info.txt12
-rw-r--r--src/kdf/tls_prf/info.txt12
-rw-r--r--src/kdf/x942_prf/info.txt12
6 files changed, 29 insertions, 30 deletions
diff --git a/src/kdf/kdf1/info.txt b/src/kdf/kdf1/info.txt
index 04d8db096..ede10017e 100644
--- a/src/kdf/kdf1/info.txt
+++ b/src/kdf/kdf1/info.txt
@@ -4,12 +4,11 @@ define KDF1
load_on auto
-<requires>
-kdf
-</requires>
-
<add>
kdf1.h
kdf1.cpp
</add>
+<requires>
+hash
+</requires>
diff --git a/src/kdf/kdf2/info.txt b/src/kdf/kdf2/info.txt
index 80b562824..1858f8929 100644
--- a/src/kdf/kdf2/info.txt
+++ b/src/kdf/kdf2/info.txt
@@ -4,11 +4,11 @@ define KDF2
load_on auto
-<requires>
-kdf
-</requires>
-
<add>
kdf2.cpp
kdf2.h
</add>
+
+<requires>
+hash
+</requires>
diff --git a/src/kdf/mgf1/info.txt b/src/kdf/mgf1/info.txt
index 0616f43b7..f9e952f82 100644
--- a/src/kdf/mgf1/info.txt
+++ b/src/kdf/mgf1/info.txt
@@ -4,11 +4,11 @@ define MGF1
load_on dep
-<requires>
-kdf
-</requires>
-
<add>
mgf1.h
mgf1.cpp
</add>
+
+<requires>
+hash
+</requires>
diff --git a/src/kdf/ssl_prf/info.txt b/src/kdf/ssl_prf/info.txt
index 890789988..f862905a2 100644
--- a/src/kdf/ssl_prf/info.txt
+++ b/src/kdf/ssl_prf/info.txt
@@ -4,13 +4,13 @@ define SSL_V3_PRF
load_on auto
-<requires>
-kdf
-md5
-sha1
-</requires>
-
<add>
prf_ssl3.h
prf_ssl3.cpp
</add>
+
+<requires>
+md5
+sha1
+sym_algo
+</requires>
diff --git a/src/kdf/tls_prf/info.txt b/src/kdf/tls_prf/info.txt
index c775c90ba..f95ef9c24 100644
--- a/src/kdf/tls_prf/info.txt
+++ b/src/kdf/tls_prf/info.txt
@@ -4,14 +4,14 @@ define TLS_V10_PRF
load_on auto
+<add>
+prf_tls.h
+prf_tls.cpp
+</add>
+
<requires>
hmac
-kdf
+mac
md5
sha1
</requires>
-
-<add>
-prf_tls.h
-prf_tls.cpp
-</add>
diff --git a/src/kdf/x942_prf/info.txt b/src/kdf/x942_prf/info.txt
index df5719de4..295c2cde6 100644
--- a/src/kdf/x942_prf/info.txt
+++ b/src/kdf/x942_prf/info.txt
@@ -4,13 +4,13 @@ define X942_PRF
load_on auto
-<requires>
-md5
-sha1
-#oid_lookup
-</requires>
-
<add>
prf_x942.cpp
prf_x942.h
</add>
+
+<requires>
+asn1
+oid_lookup
+sha1
+</requires>