mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-13 02:04:28 +00:00
d299713037
Signed-off-by: yevh-berdnyk <ie.berdnyk@gmail.com>
7 lines
203 B
Python
7 lines
203 B
Python
import itertools
|
|
|
|
|
|
def passpharse_with_spaces(passphrase):
|
|
phrase_list = passphrase.split()
|
|
return ''.join(list(itertools.chain.from_iterable(zip(phrase_list, [' ' * i for i in range(1, 13)]))))
|