Class SecurityStatusResult


  • public class SecurityStatusResult
    extends java.lang.Object
    The fields in a SecurityStatusResult indicate whether a given SSL-enabled PRFileDesc has completed its handshake and the resulting handshake-specific information. These object is returned by org.mozilla.jss.nss.SSL.SecurityStatus(fd).
    • Constructor Summary

      Constructors 
      Constructor Description
      SecurityStatusResult​(int _on, byte[] _cipher, int _keySize, int _secretKeySize, byte[] _issuer, byte[] _subject)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • on

        public int on
      • cipher

        public byte[] cipher
      • keySize

        public int keySize
      • secretKeySize

        public int secretKeySize
      • issuer

        public byte[] issuer
      • subject

        public byte[] subject
    • Constructor Detail

      • SecurityStatusResult

        public SecurityStatusResult​(int _on,
                                    byte[] _cipher,
                                    int _keySize,
                                    int _secretKeySize,
                                    byte[] _issuer,
                                    byte[] _subject)
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object