API endpoints

Random bytes

GET /api/bytes
* size: number of bytes requested
* returns: base64 encoded bytes

Random numbers

Integers

GET /api/randint
* min: smallest number
* max: largest number
* size: number of random numbers to produce
* callback: callback function in JSON-P technique
* returns: JSON list of random integers in the range [min,max]
           In case `callback` is specified, the output will be JSON-P

Floating point numbers

GET /api/rand
* size: number of random numbers to produce
* callback: callback function in JSON-P technique
* returns: JSON list of random numbers in the range [0,1[
           In case `callback` is specified, the output will be JSON-P