File: coding.go

package info (click to toggle)
golang-github-dromara-dongle 1.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,440 kB
  • sloc: makefile: 4
file content (7 lines) | stat: -rw-r--r-- 359 bytes parent folder | download
1
2
3
4
5
6
7
// Package coding provides encoding and decoding utilities for various data formats.
// It includes common constants and helper functions used across different encoding
// implementations such as Base64, Hex, and other data transformation operations.
package coding

// BufferSize buffer size for streaming (64KB is a good balance)
var BufferSize = 64 * 1024