Cycically extract a word of key material, with sign-extension bug @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[])
| 554 | * @return the next word of material from data |
| 555 | */ |
| 556 | private static int streamtoword_bug(byte data[], int offp[]) { |
| 557 | int signp[] = { 0 }; |
| 558 | return streamtowords(data, offp, signp)[1]; |
| 559 | } |
| 560 | |
| 561 | /** |
| 562 | * Initialise the Blowfish key schedule |