# Packages
No description provided by the author
# Functions
Base64FromBytes 转换 []byte ==> base64.
Base64FromHexString 转换 hex string ==> base64.
Base64FromString 转换 b64 string ==> base64.
CurrentTimestamp 返回当前的时间戳,基于1970-01-01_00:00:00,单位:ms.
HexFromBytes 把字节数组转换成 hex.
HexFromString 把字符串转换成 hex.
Int64ToTime 是 TimeToInt64 的反函数.
NewTime 根据参数创建对应的时间戳.
NewTimeWithInt64 根据参数创建对应的时间戳.
Now 根据参数创建对应的时间戳.
ParseHexString 解析hex形式的字符串,返回对应的 []byte.
PumpStream 从in读数据,并写到out,直到读到EOF.
StringifyBytes 是 ToHexString 的别名.
TimeToInt64 返回 time.Time 的 int64(ms) 形式时间戳,基于1970-01-01_00:00:00,单位:ms.
ToHexString 把字节数组格式化为字符串(charset=0~9+abcdef).