![]() |
Need help implementing Base64Encode/DecodeBytes - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Indy (https://www.atozed.com/forums/forum-8.html) +--- Forum: Indy General Discussion (https://www.atozed.com/forums/forum-9.html) +--- Thread: Need help implementing Base64Encode/DecodeBytes (/thread-138.html) |
Need help implementing Base64Encode/DecodeBytes - RaelB - 04-30-2018 Hello, Can someone help me implement these functions (in Delphi XE4) function Base64EncodeBytes(Input: TBytes): TBytes; function Base64DecodeBytes(Input: TBytes): TBytes; Could be using Indy or Soap.EncdDecd. Thank you Rael RE: Need help implementing Base64Encode/DecodeBytes - rlebeau - 04-30-2018 Indy has base64 encoder/decoder classes, TIdEncoderMIME and TIdDecoderMIME, for example: Code: uses RE: Need help implementing Base64Encode/DecodeBytes - RaelB - 05-01-2018 Thanks! |