md5: Add const qualifiers
This commit is contained in:
parent
4ed2811210
commit
e856f0a920
2 changed files with 6 additions and 6 deletions
2
md5.h
2
md5.h
|
|
@ -23,7 +23,7 @@ typedef struct {
|
|||
} MD5_CTX;
|
||||
|
||||
extern void MD5_Init(MD5_CTX *ctx);
|
||||
extern void MD5_Update(MD5_CTX *ctx, void *data, unsigned long size);
|
||||
extern void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size);
|
||||
extern void MD5_Final(unsigned char *result, MD5_CTX *ctx);
|
||||
|
||||
#endif /* __MD5_H__ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue