AlphaUnblinded private key (p), hex or bigint.
Blinding scalar (r), hex or bigint.
OptionalblindPubkey: Uint8Array<ArrayBufferLike>Optional. Blinded pubkey (P_) to match, 33 byte hex.
OptionalnaturalPub: Uint8Array<ArrayBufferLike>Optional. Pubkey calculated from private key (P = p·G), 33 byte hex.
Derived blinded secret key as 64 char hex.
Derive a blinded secret key per NUT-26.
Unblinds the pubkey (P = P_ - r·G), verifies x-coord against the naturalPub x(P) == x(p·G), then choose skStd = (p + rᵢ) mod n if parity(P) == parity(p·G), otherwise skNeg = (-p + rᵢ) mod n. Returns skStd if no blindPubkey is provided.