EddsaSession constructor

EddsaSession(
  1. SessionConfig config
)

Creates a new EdDSA Session. SessionConfig config - The configuration for the session.

Implementation

EddsaSession(SessionConfig config)
    : _keygenSession = EddsaKeygenSession(config),
      _signSession = EddsaSignSession(config),
      _importSession = EddsaImportSession(config),
      _exportSession = EddsaExportSession(config);