Base64 converter
-
Does anyone know if there's a tool which i can download and use for decoding base64 encoded files? It should work just like in http://www.base64converter.com I have a windows .net application for downloading encoded data from a web service and i need to manually decode that data using above website rather i'm looking forward to automate this entire process. I appreciate your help
-
Does anyone know if there's a tool which i can download and use for decoding base64 encoded files? It should work just like in http://www.base64converter.com I have a windows .net application for downloading encoded data from a web service and i need to manually decode that data using above website rather i'm looking forward to automate this entire process. I appreciate your help
you could write a small application yourself using Convert.FromBase64String()[^] and Convert.ToBase64String()[^]
"If your actions inspire others to dream more, learn more, do more and become more, you are a leader." - John Quincy Adams "Let me get this straight. You know her. She knows you. But she wants to eat him. And everybody's okay with this?" - Timon
-
you could write a small application yourself using Convert.FromBase64String()[^] and Convert.ToBase64String()[^]
"If your actions inspire others to dream more, learn more, do more and become more, you are a leader." - John Quincy Adams "Let me get this straight. You know her. She knows you. But she wants to eat him. And everybody's okay with this?" - Timon
Thanks for the idea i'll try that