Search:

Type: Posts; User: Junky

Search: Search took 0.09 seconds.

  1. Re: Setting up a loop for a SHA-256 hash for multiple outputs

    Do you have a question?
  2. Re: Setting up a loop for a SHA-256 hash for multiple outputs

    Look closer.


    for (int b = Integer.parseInt(a); b <= 17; b++); {

    Above loop is wrong, Below loop is correct. Compare them.


    for (int i=0;i<byteData.length;i++) {
  3. Re: Setting up a loop for a SHA-256 hash for multiple outputs

    Have you spotted the mistake yet?
  4. Re: Setting up a loop for a SHA-256 hash for multiple outputs

    for (int b = Integer.parseInt(a); b <= 17; b++); {

    Examine your loops very very carefully and see if you can spot what the problem is.
Results 1 to 4 of 4