BIP39 master seed generation processes mnemonic words through PBKDF2/HMAC-SHA512 to produce master seed.
SLIP39 specification prescribes using BIP32 approach to produce master seed, i. e. use the enthropy with HMAC-SHA512(P="Bitcoin Seed", S=shamir'ed enthropy)
Current implementation works as an extension to BIP39 that operates on raw enthropy. This needs to be fixed. UI will be changed, so that program generates directly master seed as specified in BIP32, i. e.
BIP39 support will be removed, because Shamir's secret shares generated using SLIP39 do not produce same master seed as BIP39 using same enthropy. Therefore using BIP39 input is confusing.
Probably another program operating on top of BIP39 will be added instead,
<BIP39 mnemonics> <-> <Shamir's shares with BIP39 dictionary>
BIP39 master seed generation processes mnemonic words through PBKDF2/HMAC-SHA512 to produce master seed. SLIP39 specification prescribes using BIP32 approach to produce master seed, i. e. use the enthropy with HMAC-SHA512(P="Bitcoin Seed", S=shamir'ed enthropy)
Current implementation works as an extension to BIP39 that operates on raw enthropy. This needs to be fixed. UI will be changed, so that program generates directly master seed as specified in BIP32, i. e.
BIP39 support will be removed, because Shamir's secret shares generated using SLIP39 do not produce same master seed as BIP39 using same enthropy. Therefore using BIP39 input is confusing.
Probably another program operating on top of BIP39 will be added instead,