base64 string u8vector - part-cw/lambdanative GitHub Wiki

(base64-string->u8vector str)

Decodes a base64 encoded string and returns a u8vector.

Parameter Description
str string to decode

Example

> (base64-string->u8vector "HcoDVdC7Sds=")
#u8(29 202 3 85 208 187 73 219)
> (base64-string->u8vector "HcoDV\ndC7Sd\ns=")
#u8(29 202 3 85 208 187 73 219)