search
HomeBackend DevelopmentGolangFrom C# to Go: Achieving AES and Base64 Encoding Compatibility

De C# a Go: Logrando Compatibilidad en Codificación AES y Base64

A couple of weeks ago I faced an interesting problem: I had to migrate an AES encryption algorithm from C# to Go. In the Go implementation we already had an AES encryption algorithm, but it was not compatible with the C# implementation, and several tests failed because the results did not match, mainly in the last character.

The problem was that I did not have the source code of the C# implementation, only the binary, a DLL that was used in the .NET project.

I tried to get the source code of the C# implementation, but was unsuccessful. Being an old project, there was no documentation available. Fortunately, my boss was the one who developed this implementation, but I didn't remember the exact details. However, I did know that at the end of the AES encryption process a base64 encoding function was used.

With this clue, I opened the project in .NET and installed the JetBrains extension to decompile the source code, and obtained the library code that was used to encrypt the information.

Finally, I discovered that the problem was not with the AES encryption algorithm, but with the base64 encoding.

In the C# code, at the end of the AES encryption process, the following function was used for base64 encoding: HttpServerUtility.UrlTokenEncode.

The UrlTokenEncode function is a .NET function that encodes a byte array into a base64 text string for transmission in a URL. This function performs three key actions that explain the difference in results:

  1. URL-safe Base64 encoding: uses a variant of Base64 that is suitable for URLs, replacing the characters with - and / with _.

  2. Padding Character Removal: The function removes padding = characters that are typically used in standard Base64 encoding.

  3. Adding a number to the end: The function adds a number to the end of the string to indicate how many padding characters were removed.

I discovered all this thanks to ChatGPT, not because I am an expert in base64. With this information, I was able to modify the implementation in Go to be compatible with that of C#.

In Go, after encrypting the information with AES, base64 encoding is done as follows:

encode := base64.RawURLEncoding.EncodeToString(paddedBytes)

And finally, the number of removed padding characters is added to the end of the string:

// Calcular el número de caracteres de relleno (`=`) que se habrían añadido
paddingCount := (4 - len(paddedBytes)%3) % 4

// Añadir el conteo de relleno al final de la cadena codificada (como hace UrlTokenEncode de C#)
if paddingCount > 0 {
    encoded += strconv.Itoa(paddingCount)
}

In the line paddingCount := (4 - len(paddedBytes)%3) % 4, the number of padding characters (=) is calculated and then added to the end of the base64-encoded string:

  • len(paddedBytes)%3 calculates the number of bytes that have not been base64 encoded.
  • (4 - len(paddedBytes)%3) % 4 calculates how many padding characters are missing so that the length is divisible by 4. If no padding is needed, the result is 0.

In short, the problem was not the AES encryption algorithm, but the base64 encoding. Thanks to the information obtained from ChatGPT, I was able to modify the implementation in Go to be compatible with that of C#. In this case, using ChatGPT was very helpful as it saved me a lot of time and headaches; Of course, I had to adjust each answer until the results of both implementations were equal.

The above is the detailed content of From C# to Go: Achieving AES and Base64 Encoding Compatibility. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Go language pack import: What is the difference between underscore and without underscore?Go language pack import: What is the difference between underscore and without underscore?Mar 03, 2025 pm 05:17 PM

This article explains Go's package import mechanisms: named imports (e.g., import "fmt") and blank imports (e.g., import _ "fmt"). Named imports make package contents accessible, while blank imports only execute t

How to implement short-term information transfer between pages in the Beego framework?How to implement short-term information transfer between pages in the Beego framework?Mar 03, 2025 pm 05:22 PM

This article explains Beego's NewFlash() function for inter-page data transfer in web applications. It focuses on using NewFlash() to display temporary messages (success, error, warning) between controllers, leveraging the session mechanism. Limita

How to convert MySQL query result List into a custom structure slice in Go language?How to convert MySQL query result List into a custom structure slice in Go language?Mar 03, 2025 pm 05:18 PM

This article details efficient conversion of MySQL query results into Go struct slices. It emphasizes using database/sql's Scan method for optimal performance, avoiding manual parsing. Best practices for struct field mapping using db tags and robus

How do I write mock objects and stubs for testing in Go?How do I write mock objects and stubs for testing in Go?Mar 10, 2025 pm 05:38 PM

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

How can I define custom type constraints for generics in Go?How can I define custom type constraints for generics in Go?Mar 10, 2025 pm 03:20 PM

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

How to write files in Go language conveniently?How to write files in Go language conveniently?Mar 03, 2025 pm 05:15 PM

This article details efficient file writing in Go, comparing os.WriteFile (suitable for small files) with os.OpenFile and buffered writes (optimal for large files). It emphasizes robust error handling, using defer, and checking for specific errors.

How do you write unit tests in Go?How do you write unit tests in Go?Mar 21, 2025 pm 06:34 PM

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

How can I use tracing tools to understand the execution flow of my Go applications?How can I use tracing tools to understand the execution flow of my Go applications?Mar 10, 2025 pm 05:36 PM

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)