func AESEncryptWithNopadding(origData []byte,key []byte,iv []byte) (string, error) { block, err := aes.NewCipher(key) if err != nil { return ""