Hello!
I am trying to generate an encoded random identifier from a Soroban smart contract.
I managed to generate random bytes [u8; 15].
For what it's worth, you can also take this to a BytesN -> BytesN::from_array(&e, &raw_bytes).
But now I want to encode these bytes (either from [u8; 15] or BytesN) to Base 32.
Would anyone know how to achieve this? Thanks.