Decodes the receiver string to base64 using a custom padding character.

Default padding character =

Property definitions

base64 :: base64 $ Text :: decode_base64
	# Decodes the receiver string to base64 using a custom padding character.
	#
	# Default padding character `=`
	fun decode_base64: Bytes do return to_cstring.decode_base64(byte_length)
lib/base64/base64.nit:228,2--231,73

base64 :: base64 $ FlatText :: decode_base64
	redef fun decode_base64 do return fast_cstring.decode_base64(byte_length)
lib/base64/base64.nit:245,2--74