The following sections contain a description of the Samsung Wallet onboarding process for new partners.
To register a new Samsung Account at the Wallet Partners Portal:
You can easily sign up for the Samsung Wallet service using our step-by-step guide. To utilize full functionality of the Samsung Wallet Partners Service, you need to enter company information, set encryption information, and configure card information. After verification, you get authority to use all services.
Before using the Wallet Partners Portal, an account can be created only by agreeing with the terms and conditions and privacy policy according to your nationality. If you agree with the Privacy Policy, click the Next button, and proceed with the sign-up process.
Enter your company information in the form as instructed on the screen.
You need to perform encryption authentication to use the Wallet Partners Portal.
Click the Next button to submit form and complete the sign-up process.
OpenSSL is an open-source command-line tool that allows users to perform various SSL-related tasks. This section explains how to create key factors for security with OpenSSL.
Private key helps to enable encryption and is the most important component of certificates. If you want to make the private key more secure, adding “-des3“ on the command encrypts it with a password.
openssl genpkey -out domain.key -algorithm RSA -pkeyopt rsa_keygen_bits:2048
If you want our certificate signed, you need a certificate signing request (CSR). The CSR includes the public key and some additional information (such as organization and country). Let's create a CSR (domain.csr) from an existing private key.
openssl req -out domain.csr -key domain.key -new -sha256
Enter the private key password if needed and some CSR information to complete the process. The output will look like the following:
You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [XX]:KR State or Province Name (full name) []:Seoul Locality Name (eg, city) [Default City]:Sample City Organization Name (eg, company) [Default Company Ltd]:Sample Company Organizational Unit Name (eg, section) []:Sample section Common Name (eg, your name or your server's hostname) []:domain Email Address []:email@email.com Please enter the following 'extra'attributes to be sent with your certificate request A challenge password []: An optional company name []:
You can also create both the private key and CSR with a single command:
openssl req -newkey rsa:2048 -nodes -keyout domain.key -out domain.csr
You will receive a welcome email right after account request. Using the link in the welcome email, you can download your CSR file and install to your PC.
You can manage your profile and encryption settings in the My Account section. After a signed certificate is generated, the Encryption Setting Management fields can no longer be edited.