Skip to content

The standard 'base64url' with URL and Filename Safe Alphabet described in RFC 4648

License

Notifications You must be signed in to change notification settings

Sam00078/urlsafe-b64

 
 

Repository files navigation

urlsafe_b64

Build Status

Build Status

The standard 'base64url' with URL and Filename Safe Alphabet described in RFC 4648

API

#include "b64.h"

int b64_encode(const uint8_t *in, size_t ilen, char *out, size_t *olen);

int b64_decode(const char *in, size_t ilen, uint8_t *out, size_t *olen);

int urlsafe_b64_encode(const uint8_t *in, size_t ilen, char *out, size_t *olen);

int urlsafe_b64_decode(const char *in, size_t ilen, uint8_t *out, size_t *olen);

About

The standard 'base64url' with URL and Filename Safe Alphabet described in RFC 4648

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 83.1%
  • CMake 15.4%
  • Shell 1.5%