# SecureBase

**The SecureBase** library offers a secret key option in addition to the standard base64 algorithm. Thus, a base64 operation specific to projects using the library is performed. Since the secret key of each project will be different, the base64 output will also vary depending on the secret key.

***

## Goals

Standard base64 encoding is used in many projects. As a result of data leaks, data encoded with base64 can easily be exposed. This is where SecureBase comes into play to make the encoding more secure.

* It is to make Base64 encoding safe.

***

## Requiments & Features

| Language |                                    Requiment                                    |      Encoding Support     |
| -------- | :-----------------------------------------------------------------------------: | :-----------------------: |
| .NET     | <p>.Net Framework 4.0+<br>.Net Core 3.0+<br>.Net Standart 1.6+<br>.NET 5.0+</p> | Unicode (UTF-16LE), UTF-8 |
| Delphi   |                                       All                                       | Unicode (UTF-16LE), UTF-8 |
| Go       |                                      1.13+                                      | Unicode (UTF-16LE), UTF-8 |
| Java     |                                        8+                                       | Unicode (UTF-16LE), UTF-8 |
| Python   |                                       3.0+                                      | Unicode (UTF-16LE), UTF-8 |

{% hint style="info" %} <mark style="color:orange;">**Go library**</mark> has not been tested under version Go v1.13.
{% endhint %}

***

## Algorithm Template

<figure><img src="https://2988227026-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwVwp5TEUNVAmq77Hjp97%2Fuploads%2FP7WfVMPJgRgRScdoRA49%2Fsecurebase_en.png?alt=media&#x26;token=84f7a626-8d19-4d92-9665-7259235efcf5" alt=""><figcaption></figcaption></figure>

***

## Will be supported Languages & Development Status

<table><thead><tr><th>Software Language</th><th data-type="checkbox">Development</th><th data-type="checkbox">Test</th><th data-type="checkbox">Publishing</th></tr></thead><tbody><tr><td>.NET</td><td>true</td><td>true</td><td>true</td></tr><tr><td>C++</td><td>false</td><td>false</td><td>false</td></tr><tr><td>Dart</td><td>true</td><td>false</td><td>false</td></tr><tr><td>Delphi</td><td>true</td><td>true</td><td>true</td></tr><tr><td>Go</td><td>true</td><td>true</td><td>true</td></tr><tr><td>Java</td><td>true</td><td>true</td><td>true</td></tr><tr><td>Python</td><td>true</td><td>true</td><td>true</td></tr></tbody></table>
