Nexus' software components have new names:

Nexus PRIME -> Smart ID Identity Manager
Nexus Certificate Manager -> Smart ID Certificate Manager
Nexus Hybrid Access Gateway -> Smart ID Digital Access component
Nexus Personal -> Smart ID clients

Go to Nexus homepage for overviews of Nexus' solutions, customer cases, news and more.


This article describes how to manage the option to control the PIN complexity in the use case Get virtual smart card (self-service user) in the Virtual smart card package. A script in Identity Manager Admin is used to manage the options.

See a list of all available options in the Smart ID use cases for the Virtual smart card package here: Virtual smart card - Options

Expand/Collapse All

Prerequisites

-

Step-by-step instruction for the administrator

  1. Log in to Identity Manager Admin as Administrator.
  1. In Identity Manager Admin, go to Home > Scripts.
  2. Select the script VirtualSmartCardScriptOptions.
  3. There are 6 variables in the script, see the example, see also section "Default value and outcome".

    Example:

    /*
    Defines the min and max length of the virtual smart card
    */
    
    VirtualSmartCardOptionPinMinLength = 6 // --> CHANGE HERE
    VirtualSmartCardOptionPinMaxLength = 15 // --> CHANGE HERE
    
    /* 
    Defines if upper case letters are allowed in the PIN
      * Valid values: ALLOWED (default), DISALLOWED, REQUIRED
    */ 
    
    VirtualSmartCardOptionPinUpperCase = "ALLOWED" 
    
    /* 
    Defines if lower case letters are allowed in the PIN
      * Valid values: ALLOWED (default), DISALLOWED, REQUIRED
    */ 
    
    VirtualSmartCardOptionPinLowerCase = "ALLOWED" 
    
    /* 
    Defines if pin digits are allowed in the PIN
      * Valid values: ALLOWED (default), DISALLOWED, REQUIRED
    */ 
    VirtualSmartCardOptionDigitsAllowed = "ALLOWED"
    
    /* 
    Defines if special characters are allowed for the PIN
       * Valid values: ALLOWED (default), DISALLOWED, REQUIRED
    */
    VirtualSmartCardOptionSpecialCharactersAllowed = "ALLOWED"
  4. Click Save in the upper left corner to save the updated script (or exit without saving if there are no updates).

Technical details

VariableValid values
VirtualSmartCardOptionPinMinLength6 (default)
VirtualSmartCardOptionPinMaxLength15 (default)
VirtualSmartCardOptionPinUpperCaseALLOWED (default), DISALLOWED, REQUIRED
VirtualSmartCardOptionPinLowerCaseALLOWED (default), DISALLOWED, REQUIRED
VirtualSmartCardOptionDigitsAllowedALLOWED (default), DISALLOWED, REQUIRED
VirtualSmartCardOptionSpecialCharactersAllowedALLOWED (default), DISALLOWED, REQUIRED

Click here to see the whole manage options script.


Related information