func AESECBEncrypt(key, plainText []byte) ([]byte, error) {
    logger.Println("AES-ECB Encrpypt: PlainText Length:", len(plainText))
    if len(plainText)%aes.BlockSize != 0 {
        return nil, fmt.Errorf("need a multiple of the blocksize")
    }