read() attempts to read nbyte of data to the object referenced by the
descriptor fd from a buffer. read() performs the same
action, but scatters the input data from the iovcnt buffers specified by the
members of the iov array: iov[0], iov[1], ..., iov[iovcnt-1].
Create a cryptographicly secure 32bit random number with the support of
the underlying hardware. If the required hardware isn’t available,
the function returns -1.
Create a cryptographicly secure 64bit random number with the support of
the underlying hardware. If the required hardware isn’t available,
the function returns -1.
write() attempts to write nbyte of data to the object referenced by the
descriptor fd from a buffer. writev() performs the same
action, but gathers the output data from the iovcnt buffers specified by the
members of the iov array: iov[0], iov[1], ..., iov[iovcnt-1].