Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyberfined/arm-asm-base64
https://github.com/cyberfined/arm-asm-base64
arm-assembly base64
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cyberfined/arm-asm-base64
- Owner: cyberfined
- License: bsd-3-clause
- Created: 2019-03-21T20:44:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-21T20:45:19.000Z (over 5 years ago)
- Last Synced: 2023-08-28T05:50:13.318Z (about 1 year ago)
- Topics: arm-assembly, base64
- Language: Assembly
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# arm-asm-base64
Tool and library for encode and decode base64 written with arm assembly language.
# Library functions
```c
int base64_encode(char *d, char *s, int len);
int base64_decode(char *d, char *s, int len);
int base64_encode_file(int ifd, int ofd);
int base64_decode_file(int ifd, int ofd);
```
# Usage
```
base64 [OPTION] [INP] [OUT]
Options:
-d decode data
-h print help
```
# Build
Set AS and LD variables in Makefile and run make.
# License
BSD-3-Clause. Read LICENSE file.