Compare commits
8 Commits
v1.0.0
...
b61d8396f5
| Author | SHA1 | Date | |
|---|---|---|---|
| b61d8396f5 | |||
| 53279581aa | |||
| f4b5dc0ce0 | |||
| a5374daa6f | |||
| baf52bb404 | |||
| f47f367045 | |||
| fd660f3b56 | |||
| 78276e8c88 |
39
.github/workflows/docs.yml
vendored
Normal file
39
.github/workflows/docs.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
name: Deploy documentation
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["main"]
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: "pages"
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Pages
|
||||||
|
uses: actions/configure-pages@v5
|
||||||
|
- name: Install Doxygen
|
||||||
|
run: sudo apt install doxygen
|
||||||
|
- name: Generate docs
|
||||||
|
run: doxygen
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-pages-artifact@v3
|
||||||
|
with:
|
||||||
|
path: 'doc/html'
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v4
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -42,6 +42,7 @@ BUILD.bazel
|
|||||||
bin
|
bin
|
||||||
obj
|
obj
|
||||||
lib
|
lib
|
||||||
|
doc
|
||||||
|
|
||||||
# IDE
|
# IDE
|
||||||
.vscode
|
.vscode
|
||||||
|
|||||||
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -0,0 +1,6 @@
|
|||||||
|
[submodule "distrib/arch"]
|
||||||
|
path = distrib/arch
|
||||||
|
url = https://aur.archlinux.org/libbasen.git
|
||||||
|
[submodule "deps/doxygen-awesome-css"]
|
||||||
|
path = deps/doxygen-awesome-css
|
||||||
|
url = https://github.com/jothepro/doxygen-awesome-css.git
|
||||||
|
|||||||
4
AUTHORS
4
AUTHORS
@ -1,5 +1,5 @@
|
|||||||
libbasen authors:
|
libbasen project authors:
|
||||||
|
|
||||||
commits | username
|
commits | username
|
||||||
45 | vSEK1RO
|
46 | vSEK1RO
|
||||||
|
|
||||||
|
|||||||
5
Makefile
5
Makefile
@ -5,7 +5,7 @@ DEBUG ?= false
|
|||||||
USRDIR ?= /usr
|
USRDIR ?= /usr
|
||||||
|
|
||||||
.PHONY: build i install uni uninstall\
|
.PHONY: build i install uni uninstall\
|
||||||
tools library tests clean
|
tools library tests docs clean
|
||||||
|
|
||||||
LIB = basen
|
LIB = basen
|
||||||
OBJS =\
|
OBJS =\
|
||||||
@ -77,6 +77,9 @@ uninstall:
|
|||||||
rm -f ${patsubst %, ${USRLIB}/lib${LIB}${-g}%, .so .a}
|
rm -f ${patsubst %, ${USRLIB}/lib${LIB}${-g}%, .so .a}
|
||||||
rm -f ${patsubst %, ${USRBIN}/%${-g}, ${TOOLS}}
|
rm -f ${patsubst %, ${USRBIN}/%${-g}, ${TOOLS}}
|
||||||
|
|
||||||
|
docs:
|
||||||
|
doxygen Doxyfile
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf ${OBJDIR}/* ${LIBDIR}/* ${BINDIR}/*
|
rm -rf ${OBJDIR}/* ${LIBDIR}/* ${BINDIR}/*
|
||||||
|
|
||||||
|
|||||||
55
README.md
55
README.md
@ -1,3 +1,54 @@
|
|||||||
# libbase
|
# libbasen
|
||||||
|
|
||||||
encoding/decoding from arbitrary base
|
c++ encoding/decoding from arbitrary base
|
||||||
|
|
||||||
|
<a href="https://repology.org/project/libbasen/versions">
|
||||||
|
<img src="https://repology.org/badge/tiny-repos/libbasen.svg" alt="Packaging status">
|
||||||
|
</a>
|
||||||
|
<a href="https://repology.org/project/libbasen/versions">
|
||||||
|
<img src="https://repology.org/badge/latest-versions/libbasen.svg" alt="latest packaged version(s)">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
## Contents
|
||||||
|
|
||||||
|
- [Installation](#installation)
|
||||||
|
- [Contributing](#contributing)
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Automatically from specified repositories:
|
||||||
|
|
||||||
|
[](https://repology.org/project/libbasen/versions)
|
||||||
|
|
||||||
|
Manually using make:
|
||||||
|
```
|
||||||
|
make -j $(nproc)
|
||||||
|
sudo make i USRDIR=(Your installation dir)
|
||||||
|
```
|
||||||
|
Uninstall:
|
||||||
|
```
|
||||||
|
sudo make uni USRDIR=(Your installation dir)
|
||||||
|
```
|
||||||
|
For build with with debug flags:
|
||||||
|
```
|
||||||
|
make -j $(nproc) DEBUG=
|
||||||
|
```
|
||||||
|
For build tests (needed gtest package as dependency):
|
||||||
|
```
|
||||||
|
make tests -j $(nproc) DEBUG=
|
||||||
|
```
|
||||||
|
And also flag for dynamic linking (if possible):
|
||||||
|
```
|
||||||
|
make tools -j $(nproc) SHARED=
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Main branch is under protection rules, so you should create pull request. After merging will be runned [authors.sh](https://github.com/vSEK1RO/libbasen/blob/main/authors.sh) for adding all contributors usernames and their number of commits to [AUTHORS](https://github.com/vSEK1RO/libbasen/blob/main/AUTHORS) file.
|
||||||
|
|
||||||
|
Now we would like to implement the following features:
|
||||||
|
- Base32
|
||||||
|
- BCH
|
||||||
|
- Bech32
|
||||||
|
|
||||||
|
[⬆️ Contents](#contents)
|
||||||
|
|||||||
1
deps/doxygen-awesome-css
vendored
Submodule
1
deps/doxygen-awesome-css
vendored
Submodule
Submodule deps/doxygen-awesome-css added at cc1bee0804
1
distrib/arch
Submodule
1
distrib/arch
Submodule
Submodule distrib/arch added at 0dcfd063ed
88
header.html
Normal file
88
header.html
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
<!-- HTML header for doxygen 1.12.0-->
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="$langISO">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen $doxygenversion"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
|
||||||
|
<!--BEGIN PROJECT_ICON-->
|
||||||
|
<link rel="icon" href="$relpath^$projecticon" type="image/x-icon" />
|
||||||
|
<!--END PROJECT_ICON-->
|
||||||
|
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN FULL_SIDEBAR-->
|
||||||
|
<script type="text/javascript">var page_layout=1;</script>
|
||||||
|
<!--END FULL_SIDEBAR-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
||||||
|
<!--BEGIN COPY_CLIPBOARD-->
|
||||||
|
<script type="text/javascript" src="$relpath^clipboard.js"></script>
|
||||||
|
<!--END COPY_CLIPBOARD-->
|
||||||
|
$treeview
|
||||||
|
$search
|
||||||
|
$mathjax
|
||||||
|
$darkmode
|
||||||
|
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||||
|
$extrastylesheet
|
||||||
|
<script type="text/javascript" src="$relpath^doxygen-awesome-darkmode-toggle.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
DoxygenAwesomeDarkModeToggle.init()
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="$relpath^doxygen-awesome-fragment-copy-button.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
DoxygenAwesomeFragmentCopyButton.init()
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN FULL_SIDEBAR-->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<!--END FULL_SIDEBAR-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
|
||||||
|
<!--BEGIN TITLEAREA-->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<!--BEGIN PROJECT_LOGO-->
|
||||||
|
<td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"$logosize/></td>
|
||||||
|
<!--END PROJECT_LOGO-->
|
||||||
|
<!--BEGIN PROJECT_NAME-->
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">$projectname<!--BEGIN PROJECT_NUMBER--><span id="projectnumber"> $projectnumber</span><!--END PROJECT_NUMBER-->
|
||||||
|
</div>
|
||||||
|
<!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
|
||||||
|
</td>
|
||||||
|
<!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME-->
|
||||||
|
<!--BEGIN PROJECT_BRIEF-->
|
||||||
|
<td>
|
||||||
|
<div id="projectbrief">$projectbrief</div>
|
||||||
|
</td>
|
||||||
|
<!--END PROJECT_BRIEF-->
|
||||||
|
<!--END !PROJECT_NAME-->
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN SEARCHENGINE-->
|
||||||
|
<!--BEGIN !FULL_SIDEBAR-->
|
||||||
|
<td>$searchbox</td>
|
||||||
|
<!--END !FULL_SIDEBAR-->
|
||||||
|
<!--END SEARCHENGINE-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
</tr>
|
||||||
|
<!--BEGIN SEARCHENGINE-->
|
||||||
|
<!--BEGIN FULL_SIDEBAR-->
|
||||||
|
<tr><td colspan="2">$searchbox</td></tr>
|
||||||
|
<!--END FULL_SIDEBAR-->
|
||||||
|
<!--END SEARCHENGINE-->
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--END TITLEAREA-->
|
||||||
|
<!-- end header part -->
|
||||||
@ -7,15 +7,95 @@
|
|||||||
|
|
||||||
namespace baseN
|
namespace baseN
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @param str [in] pointer to string
|
||||||
|
* @param str_size
|
||||||
|
* @param map int8_t[256] array, where at an index equal to the value of the symbol is the index of this symbol in the digits array. -1 if there is no symbol
|
||||||
|
* @return that string doesn't contain unnecessary symbols
|
||||||
|
*/
|
||||||
bool isValid(const char *str, uint64_t str_size, const int8_t *map) noexcept;
|
bool isValid(const char *str, uint64_t str_size, const int8_t *map) noexcept;
|
||||||
|
/**
|
||||||
|
* @param str string or string_view which you want to decode
|
||||||
|
* @param map int8_t[256] array, where at an index equal to the value of the symbol is the index of this symbol in the digits array. -1 if there is no symbol
|
||||||
|
* @return that string doesn't contain unnecessary symbols
|
||||||
|
*/
|
||||||
bool isValid(std::string_view str, const int8_t *map) noexcept;
|
bool isValid(std::string_view str, const int8_t *map) noexcept;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param data vector or span of data which you want to encode
|
||||||
|
* @param base from 1 to 255
|
||||||
|
* @return estimated size after encoding
|
||||||
|
*/
|
||||||
uint64_t sizeEncoded(std::span<const uint8_t> data, uint8_t base);
|
uint64_t sizeEncoded(std::span<const uint8_t> data, uint8_t base);
|
||||||
uint64_t sizeDecoded(std::string_view str, uint8_t base, const char* digits) noexcept;
|
/**
|
||||||
|
* @param str string or string_view which you want to decode
|
||||||
|
* @param base from 1 to 255
|
||||||
|
* @param digits char[base] array of digits
|
||||||
|
* @return estimated size after decoding
|
||||||
|
*/
|
||||||
|
uint64_t sizeDecoded(std::string_view str, uint8_t base, const char *digits) noexcept;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param data [in] pointer to data which you want encode
|
||||||
|
* @param data_size
|
||||||
|
* @param str [out] pointer to string for encoded data output
|
||||||
|
* @param str_size
|
||||||
|
* @param base from 1 to 255
|
||||||
|
* @param digits char[base] array of digits
|
||||||
|
* @code{cpp}
|
||||||
|
* std::vector<uint8_t> data;
|
||||||
|
* std::string str(baseN::sizeEncoded(data, 58), ' ');
|
||||||
|
*
|
||||||
|
* auto offset = baseN::encode(data.data(), data.size(), str.data(), str.size(), 58, base58::digits);
|
||||||
|
* // deleting leading zeroes
|
||||||
|
* str.erase(str.begin(), str.begin() + offset);
|
||||||
|
* @endcode
|
||||||
|
* @return number of leading chars, which should be trimmed
|
||||||
|
* @warning contain leading zeros, returns count of them
|
||||||
|
*/
|
||||||
uint64_t encode(const uint8_t *data, uint64_t data_size, char *str, uint64_t str_size, uint8_t base, const char *digits);
|
uint64_t encode(const uint8_t *data, uint64_t data_size, char *str, uint64_t str_size, uint8_t base, const char *digits);
|
||||||
|
/**
|
||||||
|
* @param data vector or span of data which you want to encode
|
||||||
|
* @param base from 1 to 255
|
||||||
|
* @param digits char[base] array of digits
|
||||||
|
* @code{cpp}
|
||||||
|
* std::vector<uint8_t> data;
|
||||||
|
* auto str = baseN::encode(data, 58, base58::digits);
|
||||||
|
* @endcode
|
||||||
|
* @return encoded string
|
||||||
|
*/
|
||||||
std::string encode(std::span<const uint8_t> data, uint8_t base, const char *digits) noexcept;
|
std::string encode(std::span<const uint8_t> data, uint8_t base, const char *digits) noexcept;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param str [in] pointer to string which you want decode
|
||||||
|
* @param str_size
|
||||||
|
* @param data [out] pointer to data for encoded string output
|
||||||
|
* @param data_size
|
||||||
|
* @param base from 1 to 255
|
||||||
|
* @param digits char[base] array of digits
|
||||||
|
* @param map int8_t[256] array, where at an index equal to the value of the symbol is the index of this symbol in the digits array. -1 if there is no symbol
|
||||||
|
* @code{cpp}
|
||||||
|
* std::string str;
|
||||||
|
* std::vector<uint8_t> data(baseN::sizeDecoded(str, 58));
|
||||||
|
*
|
||||||
|
* auto offset = baseN::decode(str.data(), str.size(), data.data(), data.size(), 58, base58::digits, base58::map);
|
||||||
|
* // deleting leading zeroes
|
||||||
|
* data.erase(data.begin(), data.begin() + offset);
|
||||||
|
* @endcode
|
||||||
|
* @return number of leading chars, which should be trimmed
|
||||||
|
* @warning contain leading zeros, returns count of them
|
||||||
|
*/
|
||||||
uint64_t decode(const char *str, uint64_t str_size, uint8_t *data, uint64_t data_size, uint8_t base, const char *digits, const int8_t *map);
|
uint64_t decode(const char *str, uint64_t str_size, uint8_t *data, uint64_t data_size, uint8_t base, const char *digits, const int8_t *map);
|
||||||
|
/**
|
||||||
|
* @param str string or string_view which you want to decode
|
||||||
|
* @param base from 1 to 255
|
||||||
|
* @param digits char[base] array of digits
|
||||||
|
* @param map int8_t[256] array, where at an index equal to the value of the symbol is the index of this symbol in the digits array. -1 if there is no symbol
|
||||||
|
* @code{cpp}
|
||||||
|
* std::string str;
|
||||||
|
* auto data = baseN::decode(str, 58, base58::digits, base58::map);
|
||||||
|
* @endcode
|
||||||
|
* @return decoded data
|
||||||
|
*/
|
||||||
std::vector<uint8_t> decode(std::string_view str, uint8_t base, const char *digits, const int8_t *map) noexcept;
|
std::vector<uint8_t> decode(std::string_view str, uint8_t base, const char *digits, const int8_t *map) noexcept;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user