Adds support to urlEncode transformation

This commit is contained in:
Felipe Zimmerle
2015-10-22 20:47:02 -03:00
parent e3e8bac138
commit 91d29d2849
5 changed files with 75 additions and 11 deletions

View File

@@ -33,6 +33,9 @@ class UrlEncode : public Transformation {
explicit UrlEncode(std::string action);
std::string evaluate(std::string exp,
Assay *assay) override;
std::string url_enc(const char *input,
unsigned int input_len, int *changed);
};
} // namespace transformations