|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object anon.crypto.MyECDSASignature
public final class MyECDSASignature
Field Summary | |
---|---|
(package private) org.bouncycastle.crypto.digests.SHA1Digest |
m_digest
|
private java.security.Key |
m_initKey
|
(package private) org.bouncycastle.crypto.signers.ECDSASigner |
m_signatureAlgorithm
|
private static org.bouncycastle.asn1.x509.AlgorithmIdentifier |
ms_identifier
|
Constructor Summary | |
---|---|
MyECDSASignature()
|
Method Summary | |
---|---|
byte[] |
decodeForXMLSignature(byte[] a_encodedSignature)
Tries to decode a signature in a way as it would meet the W3C standard for XML signature values. |
byte[] |
encodeForXMLSignature(byte[] a_signature)
Encodes a signature in a way it meets the W3C standard for XML signature values. |
org.bouncycastle.asn1.x509.AlgorithmIdentifier |
getIdentifier()
Returns the algorithm identifier. |
java.lang.String |
getXMLSignatureAlgorithmReference()
Returns a description of the the signature algorithm for XML signatures as defined in http://www.w3.org/TR/xmldsig-core/#sec-AlgID. |
void |
initSign(IMyPrivateKey k)
Initialises the algorithm for signing. |
void |
initVerify(IMyPublicKey k)
Initialises the algorithm for verifying. |
byte[] |
sign(byte[] bytesToSign)
Signs a message and returns the signature. |
boolean |
verify(byte[] a_message,
byte[] a_signature)
Tests if the signature of a specified message is valid. |
boolean |
verify(byte[] a_message,
int message_offset,
int message_len,
byte[] a_signature,
int signature_offset,
int signature_len)
Tests if the signature of a specified message is valid. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final org.bouncycastle.asn1.x509.AlgorithmIdentifier ms_identifier
org.bouncycastle.crypto.digests.SHA1Digest m_digest
org.bouncycastle.crypto.signers.ECDSASigner m_signatureAlgorithm
private java.security.Key m_initKey
Constructor Detail |
---|
public MyECDSASignature()
Method Detail |
---|
public byte[] encodeForXMLSignature(byte[] a_signature)
IMySignature
encodeForXMLSignature
in interface IMySignature
encodeForXMLSignature
in interface ISignatureCreationAlgorithm
a_signature
- an non-encoded signature
http://www.w3.org/TR/xmldsig-core/#sec-SignatureAlg
public byte[] decodeForXMLSignature(byte[] a_encodedSignature)
IMySignature
decodeForXMLSignature
in interface IMySignature
decodeForXMLSignature
in interface ISignatureVerificationAlgorithm
a_encodedSignature
- an encoded signature
http://www.w3.org/TR/xmldsig-core/#sec-SignatureAlg
public java.lang.String getXMLSignatureAlgorithmReference()
IMySignature
getXMLSignatureAlgorithmReference
in interface IMySignature
getXMLSignatureAlgorithmReference
in interface ISignatureCreationAlgorithm
getXMLSignatureAlgorithmReference
in interface ISignatureVerificationAlgorithm
http://www.w3.org/TR/xmldsig-core/#sec-AlgID
public void initSign(IMyPrivateKey k) throws java.security.InvalidKeyException
IMySignature
initSign
in interface IMySignature
k
- a private key
java.security.InvalidKeyException
- if the key is invalidpublic void initVerify(IMyPublicKey k) throws java.security.InvalidKeyException
IMySignature
initVerify
in interface IMySignature
k
- a public key
java.security.InvalidKeyException
- if the key is invalidpublic byte[] sign(byte[] bytesToSign)
IMySignature
sign
in interface IMySignature
sign
in interface ISignatureCreationAlgorithm
bytesToSign
- a message
public boolean verify(byte[] a_message, int message_offset, int message_len, byte[] a_signature, int signature_offset, int signature_len)
ISignatureVerificationAlgorithm
verify
in interface ISignatureVerificationAlgorithm
a_message
- a messagemessage_offset
- start of messagemessage_len
- length of messagea_signature
- a signaturesignature_offset
- start of signaturesignature_len
- length of signature
public boolean verify(byte[] a_message, byte[] a_signature)
IMySignature
verify
in interface IMySignature
verify
in interface ISignatureVerificationAlgorithm
a_message
- a messagea_signature
- a signature
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getIdentifier()
ISignatureCreationAlgorithm
getIdentifier
in interface ISignatureCreationAlgorithm
getIdentifier
in interface ISignatureVerificationAlgorithm
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |