diff options
Diffstat (limited to 'src/mac/libraries')
| -rw-r--r-- | src/mac/libraries/DES/doc/Bugs | 9 | ||||
| -rw-r--r-- | src/mac/libraries/DES/doc/Version history | 17 | ||||
| -rw-r--r-- | src/mac/libraries/DES/include/des.h | 8 |
3 files changed, 27 insertions, 7 deletions
diff --git a/src/mac/libraries/DES/doc/Bugs b/src/mac/libraries/DES/doc/Bugs index ba4fabeaf..d9d4dd628 100644 --- a/src/mac/libraries/DES/doc/Bugs +++ b/src/mac/libraries/DES/doc/Bugs @@ -1,9 +1,10 @@ ============================================================================== DES Library Bug List ============================================================================== -Current version: 1.0.3 -Date: April 21, 1999 -Authors: lxs@mit.edu +Current version: 1.0.4 +Date: April 29, 1999 +Authors: lxs@mit.edu, meeroh@mit.edu ============================================================================== -No known bugs in 1.0.3
\ No newline at end of file +[ 2] No #ifdef __cplusplus in des.h +[ 1] Missing MacTypes.h in des.h diff --git a/src/mac/libraries/DES/doc/Version history b/src/mac/libraries/DES/doc/Version history index 3b1565953..b8710504d 100644 --- a/src/mac/libraries/DES/doc/Version history +++ b/src/mac/libraries/DES/doc/Version history @@ -1,11 +1,22 @@ ============================================================================== DES Version History ============================================================================== -Current version: 1.0.3 -Date: April 21, 1999 -Author: lxs@mit.edu +Current version: 1.0.4 +Date: April 29, 1999 +Author: lxs@mit.edu, meeroh@mit.edu ============================================================================== +DESLib 1.0.4 +April 29, 1999 + +New features in this revision: none + +Bugs fixed in this revision: + [ 2] Added C++ bracketing to des.h + +======================================================================== + + DESLib 1.0.3 April 21, 1999 diff --git a/src/mac/libraries/DES/include/des.h b/src/mac/libraries/DES/include/des.h index f29177a6c..a73a45638 100644 --- a/src/mac/libraries/DES/include/des.h +++ b/src/mac/libraries/DES/include/des.h @@ -17,6 +17,10 @@ #include <stdio.h> #include <MacTypes.h> +#ifdef __cplusplus +extern "C" { +#endif + #ifndef DES_INT32 #define DES_INT32 SInt32 #endif @@ -158,4 +162,8 @@ int des_set_key(des_cblock *key, des_key_schedule schedule); # pragma import reset #endif +#ifdef __cplusplus +} +#endif + #endif /* DES_DEFS */ |
