Codebase list libcryptx-perl / 507f336
assert_not_ROK is broken in 5.8.1 Karel Miko 6 years ago
2 changed file(s) with 11 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
44 - Crypt::PK::ECC - improved import of pkcs#8 private keys
55 - fix #28 Apple's APNS pkcs8 auth key import fails (Crypt::PK::ECC)
66 - new Crypt::Digest::Keccak(224|256|384|512)
7 - fix cpantesters failure (5.8.1 related)
78
89 0.058 2018-02-27
910 - fix: decode_b58b + invalid input
66 #define NEED_sv_2pv_flags_GLOBAL
77 #define NEED_newRV_noinc_GLOBAL
88 #include "ppport.h"
9
10 /* assert_not_ROK is broken in 5.8.1 */
11 #if PERL_VERSION == 8 && PERL_SUBVERSION == 1
12 # undef assert_not_ROK
13 # if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
14 # define assert_not_ROK(sv) ({assert(!SvROK(sv) || !SvRV(sv));}),
15 # else
16 # define assert_not_ROK(sv)
17 # endif
18 #endif
919
1020 #undef LTC_SOURCE
1121 #include "tomcrypt.h"