https://github.com/asg017/sqlite-base64
https://github.com/asg017/sqlite-base64
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/asg017/sqlite-base64
- Owner: asg017
- Created: 2022-03-21T05:24:24.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T23:33:41.000Z (over 2 years ago)
- Last Synced: 2025-02-26T17:45:50.806Z (2 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sqlite-base64
A base64 encoder/decoder for SQLite, written in Rust. See [`sqlite-loadable-rs`](https://github.com/asg017/sqlite-loadable-rs), the framework that makes this extension possible.
md).## WORK IN PROGRESS
This extension isn't 100% complete yet, but hoping to release soon! Once it's ready, you'll be able to do things like:
```sql
select base64_decode('YWxleA=='); -- 'alex'
select base64_encode('angel'); -- 'YW5nZWw='
```In the meantime, checkout the very-new and more offical [base64.c](https://github.com/sqlite/sqlite/blob/master/ext/misc/base64.c) SQLite extension.