Code Monkey home page Code Monkey logo

Comments (3)

ulisesbocchio avatar ulisesbocchio commented on May 22, 2024

Hey Fabio, thanks for using the library :)
The problem is your Encryption endpoint and the way you're invoking it. You're taking the whole body (@RequestBody String test) as input in your endpoint, and when doing the curl, you're sending it as FORM data by default (without specifying content-type).
So when you capture the Request Body in your endpoint and is converted to String, Spring finds that you only defined one parameter mytext that has no value, so its literally "mytext=" in URL form enconded format. Since you're sending --data mytext

Change your encrypt method in JasyptController to this:

    @RequestMapping(method = RequestMethod.POST)
    public
    @ResponseBody
    String encrypt(
        @RequestParam("text") String text) {
        String encrypted = stringEncryptor.encrypt(text.trim());
        logger.info("ORIGINAL: " + text);
        logger.info("ENCRYPTED: " + encrypted);
        logger.info("DECRYPTED: " + stringEncryptor.decrypt(encrypted));
        return String.format("ENC(%s)", encrypted);
    }

Notice the change from @RequestBody to @RequestParam("text"). So when you invoke it from curl, you need to send a parameter called text in your URL-encoded-form data:

$ curl localhost:8080/encrypt --data text=mytext
ENC(nWdKNNDGamuA+79stkv5ww==)

Best Regards,
Uli

from jasypt-spring-boot.

ffalcinelli avatar ffalcinelli commented on May 22, 2024

No words... You're right and I'm feeling totally silly! I'm sorry for having wasted your time, thank you a lot!

from jasypt-spring-boot.

ulisesbocchio avatar ulisesbocchio commented on May 22, 2024

No worries man, glad I could help. If you like the library please give it a star.
Best,
Uli

from jasypt-spring-boot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.