Module java.base
Package java.security

Class Signer

  • All Implemented Interfaces:
    Serializable, Principal

    Deprecated. 
    This class is no longer used. Its functionality has been replaced by java.security.KeyStore, the java.security.cert package, and java.security.Principal.

    @Deprecated(since="1.2")
    public abstract class Signer
    extends Identity
    This class is used to represent an Identity that can also digitally sign data.

    The management of a signer's private keys is an important and sensitive issue that should be handled by subclasses as appropriate to their intended use.

    Since:
    1.1
    See Also:
    Identity, Serialized Form
    • Constructor Detail

      • Signer

        protected Signer​()
        Deprecated. 
        Creates a signer. This constructor should only be used for serialization.
      • Signer

        public Signer​(String name)
        Deprecated. 
        Creates a signer with the specified identity name.
        Parameters:
        name - the identity name.
      • Signer

        public Signer​(String name,
                      IdentityScope scope)
               throws KeyManagementException
        Deprecated. 
        Creates a signer with the specified identity name and scope.
        Parameters:
        name - the identity name.
        scope - the scope of the identity.
        Throws:
        KeyManagementException - if there is already an identity with the same name in the scope.