mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
7041770108
The use of binary for CURVE keys is painful; you cannot easily copy these in e.g. email, or use them directly in source code. There are various encoding possibilities. Base16 and Base64 are not optimal. Ascii85 is not safe for source (it generates quotes and escapes). So, I've designed a new Base85 encoding, Z85, which is safe to use in code and elsewhere, and I've modified libzmq to use this where it also uses binary keys (in get/setsockopt). Very simply, if you use a 32-byte value, it's Base256 (binary), and if you use a 40-byte value, it's Base85 (Z85). I've put the Z85 codec into z85_codec.hpp, it's not elegant C++ but it is minimal and it works. Feel free to rewrap as a real class if this annoys you.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
ACLOCAL_AMFLAGS = -I config
|
|
|
|
if BUILD_PGM
|
|
SUBDIRS = foreign/openpgm src doc perf tests tools
|
|
else
|
|
SUBDIRS = src doc perf tests tools
|
|
endif
|
|
|
|
DIST_SUBDIRS = foreign/openpgm src doc perf tests tools builds/msvc
|
|
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
version.sh \
|
|
MAINTAINERS \
|
|
foreign/openpgm/@pgm_basename@.tar.gz
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autom4te.cache \
|
|
$(srcdir)/configure \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print`
|
|
|
|
dist-hook:
|
|
@if test -d "$(srcdir)/.git"; \
|
|
then \
|
|
echo Creating ChangeLog && \
|
|
( cd "$(top_srcdir)" && \
|
|
echo '# Generated by Makefile. Do not edit.'; echo; \
|
|
$(top_srcdir)/config/missing --run git log --stat ) > ChangeLog.tmp \
|
|
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|
|
|| ( rm -f ChangeLog.tmp ; \
|
|
echo Failed to generate ChangeLog >&2 ); \
|
|
else \
|
|
echo A git clone is required to generate a ChangeLog >&2; \
|
|
fi
|
|
-cp $(top_srcdir)/builds/redhat/zeromq.spec $(distdir)/zeromq.spec
|
|
-rm -rf $(distdir)/foreign/openpgm/build-staging
|
|
distclean-local:
|
|
-rm -rf $(top_srcdir)/foreign/openpgm/build-staging
|
|
maintainer-clean-local:
|
|
-rm -rf $(top_srcdir)/config
|