summaryrefslogtreecommitdiff
path: root/gpxe/src/include/gpxe/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/include/gpxe/base64.h')
-rw-r--r--gpxe/src/include/gpxe/base64.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/gpxe/src/include/gpxe/base64.h b/gpxe/src/include/gpxe/base64.h
deleted file mode 100644
index e38bef01..00000000
--- a/gpxe/src/include/gpxe/base64.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _GPXE_BASE64_H
-#define _GPXE_BASE64_H
-
-/** @file
- *
- * Base64 encoding
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-#include <stdint.h>
-
-/**
- * Calculate length of base64-encoded string
- *
- * @v raw_len Raw string length (excluding NUL)
- * @ret encoded_len Encoded string length (excluding NUL)
- */
-static inline size_t base64_encoded_len ( size_t raw_len ) {
- return ( ( ( raw_len + 3 - 1 ) / 3 ) * 4 );
-}
-
-extern void base64_encode ( const char *raw, char *encoded );
-
-#endif /* _GPXE_BASE64_H */