|
|
|
|
|
PhraseToBuffer (Function) In french: PhraseVersBuffer Returns the buffer encoded in a BIP39 mnemonic phrase.
New in version 2025
sPhraseFR is string = "abreuver barrage espèce associer pointe véhicule"
Trace(BufferToHexa(PhraseToBuffer(sPhraseFR)))
sPhraseEN is string = "abuse boss fly battle rubber waste"
Trace(BufferToHexa(PhraseToBuffer(sPhraseEN)))
sPhraseES is string = "abuelo azul filtro arte prueba vengar"
Trace(BufferToHexa(PhraseToBuffer(sPhraseES)))
Syntax
<Result> = PhraseToBuffer(<Phrase> [, <Dictionary>])
<Result>: Buffer Buffer encoded in the phrase. <Phrase>: Character string Phrase generated by a BIP39 algorithm. The words in this phrase should be separated by spaces. A BIP39 phrase must contain a number of words that is a multiple of 3, and less than or equal to 24. <Dictionary>: Optional character string or integer constant File path corresponding to the BIP39 dictionary to be used. This dictionary is used to identify the words of the phrase and to get their index. If this parameter is not specified, the function will determine which of the dictionaries included in the product should be used (French, English or Spanish). New in version 2025 Remarks BIP39 dictionaries BIP39 dictionaries are not equivalent to standard language dictionaries. Their construction follows precise rules. It is recommended to use the BIP39 dictionaries included in the product (French, English, Spanish).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|