It is fragment of pseudocode algorithm SHA2 from wikipedia:
break message into 512-bit chunks
for each chunk
create a 64-entry message schedule array w[0..63] of 32-bit words
For me, it means that time of working SHA2 algorithm depends on size of input word. So the more input word is, the longer time of working SHA2 is.
Am I wrong ?