encrypt Password Data

open fun encryptPasswordData(token: String, tail: String, password: String, scopes: String): Triple<String, String, String>

Method used to encrypt the data of the password

Return

the data encrypted as Triple of String

Parameters

token

The token of the user

tail

The tail of the password

password

The value of the password

scopes

The related scopes of the password

Throws

when an error occurred during the encryption


open fun encryptPasswordData(token: String, tail: String, scopes: String): Pair<String, String>

Method used to encrypt the data of the password

Return

the data encrypted as Pair of String

Parameters

token

The token of the user

tail

The tail of the password

scopes

The related scopes of the password

Throws

when an error occurred during the encryption