Class SignatureECDSA

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static org.slf4j.Logger LOG  
      private java.security.Signature signatureAlgorithm
      Field algorithm
    • Constructor Summary

      Constructors 
      Constructor Description
      SignatureECDSA()
      Constructor SignatureRSA
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      static byte[] convertASN1toXMLDSIG​(byte[] asn1Bytes)
      Converts an ASN.1 ECDSA value to a XML Signature ECDSA Value.
      static byte[] convertXMLDSIGtoASN1​(byte[] xmldsigBytes)
      Converts a XML Signature ECDSA Value to an ASN.1 DSA value.
      protected java.lang.String engineGetJCEAlgorithmString()
      Proxy method for Signature.getAlgorithm() which is executed on the internal Signature object.
      protected java.lang.String engineGetJCEProviderName()
      Method engineGetJCEProviderName
      abstract java.lang.String engineGetURI()
      Returns the URI representation of Transformation algorithm
      protected void engineInitSign​(java.security.Key privateKey)
      Proxy method for Signature.initSign(java.security.PrivateKey) which is executed on the internal Signature object.
      protected void engineInitSign​(java.security.Key privateKey, java.security.SecureRandom secureRandom)
      Proxy method for Signature.initSign(java.security.PrivateKey, java.security.SecureRandom) which is executed on the internal Signature object.
      protected void engineInitSign​(java.security.Key signingKey, java.security.spec.AlgorithmParameterSpec algorithmParameterSpec)
      Proxy method for Mac which is executed on the internal Mac.init(Key) object.
      protected void engineInitVerify​(java.security.Key publicKey)
      Method engineInitVerify
      protected void engineSetHMACOutputLength​(int HMACOutputLength)
      Method engineSetHMACOutputLength
      protected void engineSetParameter​(java.security.spec.AlgorithmParameterSpec params)
      Proxy method for Signature.setParameter( java.security.spec.AlgorithmParameterSpec) which is executed on the internal Signature object.
      protected byte[] engineSign()
      Proxy method for Signature.sign() which is executed on the internal Signature object.
      protected void engineUpdate​(byte input)
      Proxy method for Signature.update(byte[]) which is executed on the internal Signature object.
      protected void engineUpdate​(byte[] input)
      Proxy method for Signature.update(byte[]) which is executed on the internal Signature object.
      protected void engineUpdate​(byte[] buf, int offset, int len)
      Proxy method for Signature.update(byte[], int, int) which is executed on the internal Signature object.
      protected boolean engineVerify​(byte[] signature)
      Proxy method for Signature.verify(byte[]) which is executed on the internal Signature object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait