base64.idx 1015 B

12345678910111213
  1. nimTitle base64 base64.html module std/base64 0
  2. nim encode base64.html#encode,openArray[T] proc encode[T: byte | char](s: openArray[T]; safe = false): string 138
  3. nim encode base64.html#encode,openArray[T]_2 proc encode[T: SomeInteger and not byte](s: openArray[T]; safe = false): string 157
  4. nim encodeMime base64.html#encodeMime,string,string proc encodeMime(s: string; lineLen = 75.Positive; newLine = "\r\n"; safe = false): string 162
  5. nim initDecodeTable base64.html#initDecodeTable proc initDecodeTable(): array[256, char] 200
  6. nim decode base64.html#decode,string proc decode(s: string): string 216
  7. heading Basic usage base64.html#basic-usage Basic usage 0
  8. heading Encoding data base64.html#basic-usage-encoding-data Encoding data 0
  9. heading Decoding data base64.html#basic-usage-decoding-data Decoding data 0
  10. heading URL Safe Base64 base64.html#basic-usage-url-safe-base64 URL Safe Base64 0
  11. heading See also base64.html#see-also See also 0
  12. nimgrp encode base64.html#encode-procs-all proc 138