summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiro Jurisic <meeroh@mit.edu>1999-04-29 22:21:59 +0000
committerMiro Jurisic <meeroh@mit.edu>1999-04-29 22:21:59 +0000
commit272a7d5129b32aabbf7958d87df74fab956ecfc2 (patch)
tree1c7aed24b6c425ae58dd39fda544d54b8e356acf
parent85865e239478c6fa28332ed257be2c104461d28a (diff)
downloadkrb5-272a7d5129b32aabbf7958d87df74fab956ecfc2.tar.gz
krb5-272a7d5129b32aabbf7958d87df74fab956ecfc2.tar.xz
krb5-272a7d5129b32aabbf7958d87df74fab956ecfc2.zip
Updated to DESLib 1.0.4
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11408 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/mac/libraries/DES/doc/Bugs9
-rw-r--r--src/mac/libraries/DES/doc/Version history17
-rw-r--r--src/mac/libraries/DES/include/des.h8
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 */