If you want to pass the end user's password encrypted in the Join Link then you'll need to use this script to do so.
Code example:
include __DIR__ . '/vendo_encryption_decryption_methods.php';
$plainTextUserPassword = 'the password that you want to encrypt';
$vendoSharedSecret = 'Your shared secret';
$encryptedPasswordBinaryData = \Vendo\Encryption::aes128Encrypt($plainTextUserPassword, $vendoSharedSecret);
$encodedEncryptedPassword = bin2hex($encryptedPasswordBinaryData);
//Pass $encodedEncryptedPassword over the URL in the password parameter.
You'll need to pass an extra parameter &password_encrypted=1 in the join link, this is how the join link would look like:
http://secure.vend-o.com/v/signup?site=1&affiliate_id=1&password_encrypted=1&password=78b5e7788c1b968c259f6ef069e57d43
Please check our online documentation for more details about the parameters that you can pass in the join link.
Please use the comments section below to ask any additional information.
You can also contact us at clientservices@vendoservices.com