Sign Options
interface SignOptions
A marker interface to represent options used during signing operations.
Implementations of this interface might contain properties and methods that provide specific options or metadata for signature processes in different cryptographic algorithms or signing mechanisms.
Usage Example:
Implement this interface in classes where specific signing options need to be configured and passed to signing methods.
class MySignOptions : SignOptions {
// Implementation-specific options for signing.
}
Content copied to clipboard
See also
for usage in signing operations.