in packages/utils-crypto/src/sha256.ts [248:261]
private _bin(): Uint8Array {
const { A, B, C, D, E, F, G, H, _byte, _word } = this;
_word[0] = swap32(A);
_word[1] = swap32(B);
_word[2] = swap32(C);
_word[3] = swap32(D);
_word[4] = swap32(E);
_word[5] = swap32(F);
_word[6] = swap32(G);
_word[7] = swap32(H);
return _byte.slice(0, 32);
}