CUtilPassword
This class is used to support password hashing.
This method creates a SHA384 hash of the passed password. Then the hash is
encoded into a base64 string. A passing null value generates a return value
of null as well.
@Nullable
public static String hashPassword(final char[] aPassword);
Related Pages
More interfaces and classes
Overview of key nyssr.net interfaces and classes: IRecordHelper for service registration, IShutDown for node control, CException as a code-based exception class, and CUtilPassword for password hashing
IShutDown
The IShutDown interface, implemented by the IKernel service, controls the shutdown of an nyssr.net node. It provides a hard shutdown and a soft shutdown (orderly shutdown of all namespaces).
CException
CException is the central exception class in nyssr.net, which uses a code and optional text instead of many types. It is used to transfer errors and can take over existing Java exceptions or CResults.
EShutDownCodes
The EShutDownCodes enum defines the predefined return codes for the nyssr.net node shutdown process, including SUCCESS (0), REBOOT (1) (for required restarts), and ERROR (-1) (for failures).
IRecordRegistryHelper
The IRecordRegistryHelper registers type-safe records and nanoservices in nyssr.net namespaces. It is used in service starters to anchor the generated helper classes for message handling in the name d
IRecordHelper
The IRecordHelper interface simplifies the handling of records and nanoservices in nyssr.net. It provides methods for type-safe registration of services and observers and for retrieving namespace IDs.