utils

package
v0.0.0-...-8295693 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 27, 2015 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidImgType = errors.New("invalid image type")
)
View Source
var (
	ErrTimeout = errors.New("timeout")
)

Functions

func AesDecrypt

func AesDecrypt(crypted, key []byte) ([]byte, error)

AES解密

func AesEncrypt

func AesEncrypt(origData, key []byte) ([]byte, error)

AES加密

func CheckAuth

func CheckAuth(smtpHost string, smtpPort uint, email, pwd string, timeout time.Duration) error

CheckAuth 检查指定邮箱服务商的邮箱账号和密码是否匹配。若匹配成功,返回nil,否则返回error。

func Crop

func Crop(w io.Writer, r io.Reader, rect image.Rectangle, imgType SupportedImgType) error

对图片的指定区域进行裁剪。 w 图片裁剪后的输出目的地 r 源图片 rect 裁剪区域 imgType 支持的图片类型

func Markdown2html

func Markdown2html(mdStr string) string

func Md5Bytes

func Md5Bytes(data []byte) []byte

计算数据的MD5摘要并返回其字节切片形式的MD5值

func Md5String

func Md5String(data []byte) string

计算数据的MD5摘要并返回其字符串形式的MD5值

func PKCS5Padding

func PKCS5Padding(ciphertext []byte, blockSize int) []byte

func PKCS5UnPadding

func PKCS5UnPadding(origData []byte) []byte

func Resize

func Resize(w io.Writer, r io.Reader, width, height uint, imgType SupportedImgType) error

将图片缩放为指定宽和高。 w 图片裁剪后的输出目的地 r 源图片 width 图片目标宽度 height 图片目标高度 imgType 支持的图片类型

func Thumbnails

func Thumbnails(w io.Writer, r io.Reader, rect image.Rectangle, width, height uint, imgType SupportedImgType) error

裁剪图片指定区域并将该区域缩放为指定大小的宽和高。

func ZeroPadding

func ZeroPadding(ciphertext []byte, blockSize int) []byte

func ZeroUnPadding

func ZeroUnPadding(origData []byte) []byte

Types

type SupportedImgType

type SupportedImgType string

系统当前支持的图片类型

const (
	IMG_PNG  SupportedImgType = ".png"
	IMG_JPEG SupportedImgType = ".jpg"
)

func Convert2ImgType

func Convert2ImgType(fileExt string) (SupportedImgType, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL