setBytes : Buffer -> Int -> List Bits8 -> IO ()- Visibility: export
base64EncodeLength : Int -> Int Given a length of data to be base64 encoded, this function yields the length of the encoded data
Visibility: exportbase64DecodeLength : Int -> Int Given a length of base64 encoded data, this function yields the maximum length of the data after decoding
Visibility: exportbase64EncodeBuffer : Buffer -> Buffer -> Int -> IO Int @ dest is the destination buffer, in which the result is written.
@ str is the source buffer.
@ strlen is the length of the source buffer.
Visibility: exportbase64Encode : List Bits8 -> List Bits8- Visibility: export
base64EncodeString : List Bits8 -> String- Visibility: export
base64DecodeBuffer : Buffer -> Buffer -> Int -> IO Int @ out must be large enough (see base64DecodeLength). The result is written here.
@ src must be at least as large as srclen denotes
@ srclen must be zero or positive
Returns MAX_INT of Int when there was an error
Visibility: exportbase64DecodeString : String -> IO (Maybe (List Bits8))- Visibility: export
base64DecodeBits8 : List Bits8 -> Maybe (List Bits8)- Visibility: export