File Coverage

Mod.c
Criterion Covered Total %
statement 28 30 93.3
branch 13 26 50.0
condition n/a
subroutine n/a
pod n/a
total 41 56 73.2


line stmt bran cond sub pod time code
1             /*
2             * This file was generated automatically by ExtUtils::ParseXS version 3.34 from the
3             * contents of Mod.xs. Do not edit this file, edit Mod.xs instead.
4             *
5             * ANY CHANGES MADE HERE WILL BE LOST!
6             *
7             */
8              
9             #line 1 "Mod.xs"
10             #include "EXTERN.h"
11             #include "perl.h"
12             #include "XSUB.h"
13              
14             #include "blowfish.h"
15              
16             #line 17 "Mod.c"
17             #ifndef PERL_UNUSED_VAR
18             # define PERL_UNUSED_VAR(var) if (0) var = var
19             #endif
20              
21             #ifndef dVAR
22             # define dVAR dNOOP
23             #endif
24              
25              
26             /* This stuff is not part of the API! You have been warned. */
27             #ifndef PERL_VERSION_DECIMAL
28             # define PERL_VERSION_DECIMAL(r,v,s) (r*1000000 + v*1000 + s)
29             #endif
30             #ifndef PERL_DECIMAL_VERSION
31             # define PERL_DECIMAL_VERSION \
32             PERL_VERSION_DECIMAL(PERL_REVISION,PERL_VERSION,PERL_SUBVERSION)
33             #endif
34             #ifndef PERL_VERSION_GE
35             # define PERL_VERSION_GE(r,v,s) \
36             (PERL_DECIMAL_VERSION >= PERL_VERSION_DECIMAL(r,v,s))
37             #endif
38             #ifndef PERL_VERSION_LE
39             # define PERL_VERSION_LE(r,v,s) \
40             (PERL_DECIMAL_VERSION <= PERL_VERSION_DECIMAL(r,v,s))
41             #endif
42              
43             /* XS_INTERNAL is the explicit static-linkage variant of the default
44             * XS macro.
45             *
46             * XS_EXTERNAL is the same as XS_INTERNAL except it does not include
47             * "STATIC", ie. it exports XSUB symbols. You probably don't want that
48             * for anything but the BOOT XSUB.
49             *
50             * See XSUB.h in core!
51             */
52              
53              
54             /* TODO: This might be compatible further back than 5.10.0. */
55             #if PERL_VERSION_GE(5, 10, 0) && PERL_VERSION_LE(5, 15, 1)
56             # undef XS_EXTERNAL
57             # undef XS_INTERNAL
58             # if defined(__CYGWIN__) && defined(USE_DYNAMIC_LOADING)
59             # define XS_EXTERNAL(name) __declspec(dllexport) XSPROTO(name)
60             # define XS_INTERNAL(name) STATIC XSPROTO(name)
61             # endif
62             # if defined(__SYMBIAN32__)
63             # define XS_EXTERNAL(name) EXPORT_C XSPROTO(name)
64             # define XS_INTERNAL(name) EXPORT_C STATIC XSPROTO(name)
65             # endif
66             # ifndef XS_EXTERNAL
67             # if defined(HASATTRIBUTE_UNUSED) && !defined(__cplusplus)
68             # define XS_EXTERNAL(name) void name(pTHX_ CV* cv __attribute__unused__)
69             # define XS_INTERNAL(name) STATIC void name(pTHX_ CV* cv __attribute__unused__)
70             # else
71             # ifdef __cplusplus
72             # define XS_EXTERNAL(name) extern "C" XSPROTO(name)
73             # define XS_INTERNAL(name) static XSPROTO(name)
74             # else
75             # define XS_EXTERNAL(name) XSPROTO(name)
76             # define XS_INTERNAL(name) STATIC XSPROTO(name)
77             # endif
78             # endif
79             # endif
80             #endif
81              
82             /* perl >= 5.10.0 && perl <= 5.15.1 */
83              
84              
85             /* The XS_EXTERNAL macro is used for functions that must not be static
86             * like the boot XSUB of a module. If perl didn't have an XS_EXTERNAL
87             * macro defined, the best we can do is assume XS is the same.
88             * Dito for XS_INTERNAL.
89             */
90             #ifndef XS_EXTERNAL
91             # define XS_EXTERNAL(name) XS(name)
92             #endif
93             #ifndef XS_INTERNAL
94             # define XS_INTERNAL(name) XS(name)
95             #endif
96              
97             /* Now, finally, after all this mess, we want an ExtUtils::ParseXS
98             * internal macro that we're free to redefine for varying linkage due
99             * to the EXPORT_XSUB_SYMBOLS XS keyword. This is internal, use
100             * XS_EXTERNAL(name) or XS_INTERNAL(name) in your code if you need to!
101             */
102              
103             #undef XS_EUPXS
104             #if defined(PERL_EUPXS_ALWAYS_EXPORT)
105             # define XS_EUPXS(name) XS_EXTERNAL(name)
106             #else
107             /* default to internal */
108             # define XS_EUPXS(name) XS_INTERNAL(name)
109             #endif
110              
111             #ifndef PERL_ARGS_ASSERT_CROAK_XS_USAGE
112             #define PERL_ARGS_ASSERT_CROAK_XS_USAGE assert(cv); assert(params)
113              
114             /* prototype to pass -Wmissing-prototypes */
115             STATIC void
116             S_croak_xs_usage(const CV *const cv, const char *const params);
117              
118             STATIC void
119             S_croak_xs_usage(const CV *const cv, const char *const params)
120             {
121             const GV *const gv = CvGV(cv);
122              
123             PERL_ARGS_ASSERT_CROAK_XS_USAGE;
124              
125             if (gv) {
126             const char *const gvname = GvNAME(gv);
127             const HV *const stash = GvSTASH(gv);
128             const char *const hvname = stash ? HvNAME(stash) : NULL;
129              
130             if (hvname)
131             Perl_croak_nocontext("Usage: %s::%s(%s)", hvname, gvname, params);
132             else
133             Perl_croak_nocontext("Usage: %s(%s)", gvname, params);
134             } else {
135             /* Pants. I don't think that it should be possible to get here. */
136             Perl_croak_nocontext("Usage: CODE(0x%" UVxf ")(%s)", PTR2UV(cv), params);
137             }
138             }
139             #undef PERL_ARGS_ASSERT_CROAK_XS_USAGE
140              
141             #define croak_xs_usage S_croak_xs_usage
142              
143             #endif
144              
145             /* NOTE: the prototype of newXSproto() is different in versions of perls,
146             * so we define a portable version of newXSproto()
147             */
148             #ifdef newXS_flags
149             #define newXSproto_portable(name, c_impl, file, proto) newXS_flags(name, c_impl, file, proto, 0)
150             #else
151             #define newXSproto_portable(name, c_impl, file, proto) (PL_Sv=(SV*)newXS(name, c_impl, file), sv_setpv(PL_Sv, proto), (CV*)PL_Sv)
152             #endif /* !defined(newXS_flags) */
153              
154             #if PERL_VERSION_LE(5, 21, 5)
155             # define newXS_deffile(a,b) Perl_newXS(aTHX_ a,b,file)
156             #else
157             # define newXS_deffile(a,b) Perl_newXS_deffile(aTHX_ a,b)
158             #endif
159              
160             #line 161 "Mod.c"
161              
162             XS_EUPXS(XS_Crypt__Blowfish__Mod_b_encrypt); /* prototype to pass -Wmissing-prototypes */
163 59           XS_EUPXS(XS_Crypt__Blowfish__Mod_b_encrypt)
164             {
165 59           dVAR; dXSARGS;
166 59 50         if (items != 4)
167 0           croak_xs_usage(cv, "key, str, big, b_signed");
168             {
169 59 50         unsigned char * key = (unsigned char *)SvPV_nolen(ST(0))
170             ;
171 59 50         char * str = (char *)SvPV_nolen(ST(1))
172             ;
173 59 50         short big = (short)SvIV(ST(2))
174             ;
175 59 50         short b_signed = (short)SvIV(ST(3))
176             ;
177             char * RETVAL;
178 59 50         dXSTARG;
179              
180 59           RETVAL = b_encrypt(key, str, big, b_signed);
181 59 50         sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
182             }
183 59           XSRETURN(1);
184             }
185              
186              
187             XS_EUPXS(XS_Crypt__Blowfish__Mod_b_decrypt); /* prototype to pass -Wmissing-prototypes */
188 57           XS_EUPXS(XS_Crypt__Blowfish__Mod_b_decrypt)
189             {
190 57           dVAR; dXSARGS;
191 57 50         if (items != 3)
192 0           croak_xs_usage(cv, "key, str, big");
193             {
194 57 50         unsigned char * key = (unsigned char *)SvPV_nolen(ST(0))
195             ;
196 57 50         char * str = (char *)SvPV_nolen(ST(1))
197             ;
198 57 50         short big = (short)SvIV(ST(2))
199             ;
200             char * RETVAL;
201 57 50         dXSTARG;
202              
203 57           RETVAL = b_decrypt(key, str, big);
204 57 50         sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
205             }
206 57           XSRETURN(1);
207             }
208              
209             #ifdef __cplusplus
210             extern "C"
211             #endif
212             XS_EXTERNAL(boot_Crypt__Blowfish__Mod); /* prototype to pass -Wmissing-prototypes */
213 1           XS_EXTERNAL(boot_Crypt__Blowfish__Mod)
214             {
215             #if PERL_VERSION_LE(5, 21, 5)
216             dVAR; dXSARGS;
217             #else
218 1           dVAR; dXSBOOTARGSXSAPIVERCHK;
219             #endif
220             #if (PERL_REVISION == 5 && PERL_VERSION < 9)
221             char* file = __FILE__;
222             #else
223 1           const char* file = __FILE__;
224             #endif
225              
226             PERL_UNUSED_VAR(file);
227              
228             PERL_UNUSED_VAR(cv); /* -W */
229             PERL_UNUSED_VAR(items); /* -W */
230             #if PERL_VERSION_LE(5, 21, 5)
231             XS_VERSION_BOOTCHECK;
232             # ifdef XS_APIVERSION_BOOTCHECK
233             XS_APIVERSION_BOOTCHECK;
234             # endif
235             #endif
236              
237 1           newXS_deffile("Crypt::Blowfish::Mod::b_encrypt", XS_Crypt__Blowfish__Mod_b_encrypt);
238 1           newXS_deffile("Crypt::Blowfish::Mod::b_decrypt", XS_Crypt__Blowfish__Mod_b_decrypt);
239             #if PERL_VERSION_LE(5, 21, 5)
240             # if PERL_VERSION_GE(5, 9, 0)
241             if (PL_unitcheckav)
242             call_list(PL_scopestack_ix, PL_unitcheckav);
243             # endif
244             XSRETURN_YES;
245             #else
246 1           Perl_xs_boot_epilog(aTHX_ ax);
247             #endif
248 1           }
249