summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/crypto/des/ISSUES14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/lib/crypto/des/ISSUES b/src/lib/crypto/des/ISSUES
index 110561ee9..412f94aa7 100644
--- a/src/lib/crypto/des/ISSUES
+++ b/src/lib/crypto/des/ISSUES
@@ -1,5 +1,13 @@
--*- text -*-
+Issues to be addressed for src/lib/crypto/des: -*- text -*-
-* "const" could be used in more places
+
+"const" could be used in more places
-* array types used too much
+
+Array types are used in calling interfaces. Under ANSI C, a value of
+type "arraytype *" cannot be assigned to a variable of type "const
+arraytype *", so we get compilation warnings.
+
+Possible fix: Rewrite internal interfaces to not use arrays this way.
+Provide external routines compatible with old API, but not using
+const?