Security Kernel Devices
There are two typs of Kernel Devices -
a) /dev/random
b) /dev/urandom
These can get over collecting data randomly. They should be fully be secured in the generation of PGP keys, SSH issues and application where security is applicable. This is done in order to trick the hackers.
/dev/random makes uses of a lot of Random Bytes and the waiting time increases in order to collect for more. It is a high-quality entropy which is inter-interrupt measured.
/dev/urandom is almost the same, however when entropy store is low, it comes back to strong hash, it is not secure when compared to /dev/random.
|