(t)
| 506 | * Determine the appropriate additive constant for the current iteration |
| 507 | */ |
| 508 | function sha1_kt(t) { |
| 509 | return t < 20 ? 1518500249 : t < 40 ? 1859775393 |
| 510 | : t < 60 ? -1894007588 : -899497514; |
| 511 | } |
| 512 | |
| 513 | /* |
| 514 | * Calculate the HMAC-SHA1 of a key and some data |
no outgoing calls
no test coverage detected
searching dependent graphs…