Thanks to visit codestin.com
Credit goes to github.com

Skip to content

raccoon-dev/Base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Base64

Base64 for Delphi

How to...

uses
  Rac.Base64;

...
var
  Encod, Decod: string;
begin
  Encod := TBase64.Encode(TEncoding.UTF8.GetBytes('ABC'));
  try
    Decod := TEncoding.UTF8.GetString(TBase64.Decode(Encod));
  except
    on E: Exception do
      Decod := 'Decode Error: ' + E.Message;
  end;
end;  

About

Base64 for Delphi

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages