Package java.security

Class Signer

All Implemented Interfaces:
Serializable, Principal

@Deprecated
public abstract class Signer
extends Identity
Deprecated.
Use the java.security.cert package and Principal instead.
Signer represents an identity (individual or corporation) that owns a private key and the corresponding public key.
See Also:
Serialized Form
  • Constructor Details

    • Signer

      protected Signer()
      Deprecated.
      Constructs a new instance of Signer.
    • Signer

      public Signer​(String name)
      Deprecated.
      Constructs a new instance of Signer with the given name.
      Parameters:
      name - the name of the signer.
    • Signer

      public Signer​(String name, IdentityScope scope) throws KeyManagementException
      Deprecated.
      Constructs a new instance of Signer with the given name in the given scope.
      Parameters:
      name - the name of the signer.
      scope - the scope of the signer.
      Throws:
      KeyManagementException - if a signer with the specified name already exists in the provided scope.
  • Method Details