utf7.go 347 B

12345678910111213
  1. // Package utf7 implements modified UTF-7 encoding defined in RFC 3501 section 5.1.3
  2. package utf7
  3. import (
  4. "encoding/base64"
  5. )
  6. const (
  7. min = 0x20 // Minimum self-representing UTF-7 value
  8. max = 0x7E // Maximum self-representing UTF-7 value
  9. )
  10. var b64Enc = base64.NewEncoding("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,")