Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 752 Bytes

File metadata and controls

19 lines (12 loc) · 752 Bytes

PHP Evaluation

You must create a branch on this repository to push your work.

Task 1

  • Write testing functions to check the function getSecureRandom in utils.php really returns strong and accpetable random numbers

    • Try at least to write 3 testing cases
    • Structure/write the testing function in any way you think is best and fast

Task 2

  • Create getSecureRandom API that is served on some server
  • The API must use getSecureRandom in utils.php to get the response
  • Structure/write the API in any way you think is best and fast

Note

  • You have to compromise implementation quality for task speed. Simple working approaches that are implemented fast is more preferred than best implementation that is written slow.