i write in Java
when i get master key from bip-39 string i do this
byte [] seed = PBKDF2SHA512.derive (seedCode, "mnemonic", 2048, 64);
DeterministicKey deterministicKey = HDKeyDerivation.createMasterPrivateKey (seed);
...
...
this works fine.
please tell me
what I need to fix in these two lines, to get the master key (deterministicKey) if I do not have string bip-39 at the entrance
i have only 128 bit number like this
10101010101010101011000 ...... (128 characters)