Browse Source

add empty pbes files

Steffen Jaeckel 7 years ago
parent
commit
97d1c17c8d
5 changed files with 57 additions and 0 deletions
  1. 2 0
      src/headers/tomcrypt_custom.h
  2. 4 0
      src/misc/crypt/crypt.c
  3. 17 0
      src/misc/pbes/pbes.c
  4. 17 0
      src/misc/pbes/pbes1.c
  5. 17 0
      src/misc/pbes/pbes2.c

+ 2 - 0
src/headers/tomcrypt_custom.h

@@ -495,6 +495,8 @@
 
 
 #define LTC_PADDING
 #define LTC_PADDING
 
 
+#define LTC_PBES
+
 #endif /* LTC_NO_MISC */
 #endif /* LTC_NO_MISC */
 
 
 /* cleanup */
 /* cleanup */

+ 4 - 0
src/misc/crypt/crypt.c

@@ -445,6 +445,10 @@ const char *crypt_build_settings =
 #if defined(LTC_HKDF)
 #if defined(LTC_HKDF)
     " HKDF "
     " HKDF "
 #endif
 #endif
+#if defined(LTC_PBES)
+    " PBES1 "
+    " PBES2 "
+#endif
 #if defined(LTC_DEVRANDOM)
 #if defined(LTC_DEVRANDOM)
     " LTC_DEVRANDOM "
     " LTC_DEVRANDOM "
 #endif
 #endif

+ 17 - 0
src/misc/pbes/pbes.c

@@ -0,0 +1,17 @@
+/* LibTomCrypt, modular cryptographic library -- Tom St Denis
+ *
+ * LibTomCrypt is a library that provides various cryptographic
+ * algorithms in a highly modular and flexible manner.
+ *
+ * The library is free for all purposes without any express
+ * guarantee it works.
+ */
+#include "tomcrypt_private.h"
+
+#ifdef LTC_PBES
+
+#endif
+
+/* ref:         $Format:%D$ */
+/* git commit:  $Format:%H$ */
+/* commit time: $Format:%ai$ */

+ 17 - 0
src/misc/pbes/pbes1.c

@@ -0,0 +1,17 @@
+/* LibTomCrypt, modular cryptographic library -- Tom St Denis
+ *
+ * LibTomCrypt is a library that provides various cryptographic
+ * algorithms in a highly modular and flexible manner.
+ *
+ * The library is free for all purposes without any express
+ * guarantee it works.
+ */
+#include "tomcrypt_private.h"
+
+#ifdef LTC_PBES
+
+#endif
+
+/* ref:         $Format:%D$ */
+/* git commit:  $Format:%H$ */
+/* commit time: $Format:%ai$ */

+ 17 - 0
src/misc/pbes/pbes2.c

@@ -0,0 +1,17 @@
+/* LibTomCrypt, modular cryptographic library -- Tom St Denis
+ *
+ * LibTomCrypt is a library that provides various cryptographic
+ * algorithms in a highly modular and flexible manner.
+ *
+ * The library is free for all purposes without any express
+ * guarantee it works.
+ */
+#include "tomcrypt_private.h"
+
+#ifdef LTC_PBES
+
+#endif
+
+/* ref:         $Format:%D$ */
+/* git commit:  $Format:%H$ */
+/* commit time: $Format:%ai$ */