RE: Encrypt header value. - TypeConverter

2022-09-20 Thread Wilken Marci J
* @return The rotated text. */ private static String rotate(String data) { if (data == null) { return null; } . -Original Message- From: Jeremy Ross Sent: Saturday, September 10, 2

Re: Encrypt header value.

2022-09-10 Thread Jeremy Ross
the same. > > > > > > On Tue, Sep 6, 2022 at 6:02 PM Wilken Marci J > > wrote: > > > > > HI all, > > > Issue: sensitive data getting passed from the exchange header to the > logs > > > in the clear. > > > > > > Is there a way

Re: Encrypt header value.

2022-09-10 Thread ski n
ensitive data getting passed from the exchange header to the logs > > in the clear. > > > > Is there a way to encrypt header value in camel? I've got several > > values; id, ssn, dob, password that get passed around in the message > > header or that I would like

Re: Encrypt header value.

2022-09-10 Thread Jeremy Ross
. On Tue, Sep 6, 2022 at 6:02 PM Wilken Marci J wrote: > HI all, > Issue: sensitive data getting passed from the exchange header to the logs > in the clear. > > Is there a way to encrypt header value in camel? I've got several > values; id, ssn, dob, password that g

Encrypt header value.

2022-09-06 Thread Wilken Marci J
HI all, Issue: sensitive data getting passed from the exchange header to the logs in the clear. Is there a way to encrypt header value in camel? I've got several values; id, ssn, dob, password that get passed around in the message header or that I would like to pass in the header. I