Internet Direct (Indy) Version 9.0.1 Beta
GBase64CodeTable
Represents the valid characters that constitute the Base64 alphabet.

GBase64CodeTable: string  = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
Description
GBase64CodeTable is a String constant Represents the valid characters that constitute the Base64 alphabet. GBase64CodeTable is used as the value for the TIdEncoderMIME coding table.

The following table identifies the characters in the Base64 alphabet:

      A         i
      B         j
      C         k
      D         l
      E         m
      F         n
      G         o
      H         p
      I         q
      J         r
      K         s
      L         t
      M         u
      N         v
      O         w
      P         x
      Q         y
      R         z
      S         0
      T         1
      U         2
      V         3
      W         4
      X         5
      Y         6
      Z         7
      a         8
      b         9
      c         +
      d         /
      e
      f
      g
      h
    

An additional character, the "=" character, has special significance in the Base64 encoding scheme. It is used as a padding character.