blob: 412f94aa732a928c0911c6ce5769a5314552c043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Issues to be addressed for src/lib/crypto/des: -*- text -*-
"const" could be used in more places
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?
|