ahausladen / JsonDataObjects

JSON parser for Delphi 2009 and newer
MIT License
413 stars 160 forks source link

Provide support for EncodeBase64 / DecodeBase64 #22

Closed TrueWodzu closed 8 years ago

TrueWodzu commented 8 years ago

Sometimes values are encoded in Base64. After parsing file there is a need to decode such value. It would be nice if JsonDataObjects library provided function to decode the value.

ronaldhoek commented 8 years ago

In Delphi 2009/2010/XE there is unit EncdDecd.pas (Soap.EncdDecd.pas for Delphi XE2) containing the functions EncodeBase64 and DecodeBase64.

TrueWodzu commented 8 years ago

Thanks for the info, I knew that there are many implementation of these functions altough I didn't know that Delphi itself has one.