Cycically extract a word of key material @param data the string to extract the data from @param offp a "pointer" (as a one-entry array) to the current offset into data @return the next word of material from data
(byte data[], int offp[])
| 542 | * @return the next word of material from data |
| 543 | */ |
| 544 | private static int streamtoword(byte data[], int offp[]) { |
| 545 | int signp[] = { 0 }; |
| 546 | return streamtowords(data, offp, signp)[0]; |
| 547 | } |
| 548 | |
| 549 | /** |
| 550 | * Cycically extract a word of key material, with sign-extension bug |
no test coverage detected