Encryption
- This topic has 4 replies, 2 voices, and was last updated 8 years, 9 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Home › Forums › Conduit: mLinux Model › Encryption
Hi,
I have a little question, I followed the Starting Guide to use my Conduit:mLinux and mdot, I think all work fine but I don’t understand the response:
I sended AT SEND=111111 with the mDot
I received the data with : mosquitto_sub -t lora/ / -v
in the field
“data”:”MTExMTEx”
Why the data is not ‘111111’?
Thanks
It is base64 encoded so any data can be passed via json string.
> echo MTExMTEx | base64 -d
111111
Thank you Jason for your rapid answer!
Do you know why and its possible to change it?
It is base64 encoded so any bytes can be sent via json string using plain ascii characters.
There is no setting that would allow you to change it.
ok thank you