net.rim.device.api.crypto
Class ECNRSignatureVerifier

java.lang.Object
  extended by net.rim.device.api.crypto.ECNRSignatureVerifier
All Implemented Interfaces:
SignatureVerifier

public final class ECNRSignatureVerifier
extends Object
implements SignatureVerifier

Verifies an Elliptic Curve Nyberg-Rueppel (ECNR) signature on a message.

Elliptic Curve cryptography is defined in various standards including P1363 and ANSI X9.42. ECNR is defined in P1363 ( we implemented the version from the draft 13 document ).

See Also:
ECNRSignatureSigner
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0

Constructor Summary
Category: Signed ECNRSignatureVerifier(ECPublicKey key, byte[] r, int rOffset, byte[] s, int sOffset)
          Constructs an ECNRSignatureVerifier object using SHA-1 for the digest.
Category: Signed ECNRSignatureVerifier(ECPublicKey key, Digest digest, byte[] r, int rOffset, byte[] s, int sOffset)
          Constructs an ECNRSignatureVerifier object using a specified digest.
 
Method Summary
Category: Signed  String getAlgorithm()
          Returns the name of the signing algorithm used, ie "ECNR/" + Digest.getAlgorithm().
Category: Signed  void update(byte[] data)
          Adds additional message data to the signature.
Category: Signed  void update(byte[] data, int offset, int length)
          Adds additional message data to the signature.
Category: Signed  void update(int data)
          Adds additional message data to the signature.
Category: Signed  boolean verify()
          Returns true if the signature is valid, false otherwise.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 



Constructor Detail

ECNRSignatureVerifier

public ECNRSignatureVerifier(ECPublicKey key,
                             byte[] r,
                             int rOffset,
                             byte[] s,
                             int sOffset)
                      throws CryptoTokenException,
                             CryptoUnsupportedOperationException,
                             InvalidSignatureEncodingException
Constructs an ECNRSignatureVerifier object using SHA-1 for the digest.

NOTE: Also, if r and s point to the same buffer, then it is assumed that the length of r and the length of s are both exactly the length of the private key.

Parameters:
key - The public key to use to verify the signature.
r - The array containing the r part of the signature to verify. Note that r is an element of the finite field that the elliptic curve is defined over.
rOffset - The offset, or start position, of the signature data within the r array.
s - The array containing the s part of the signature to verify. Note that s is an element of the finite field that the elliptic curve is defined over.
sOffset - The offset, or start position, of the signature data within the s array.
Throws:
CryptoTokenException - Thrown if an error occurs with the crypto token or the crypto token is invalid.
CryptoUnsupportedOperationException - Thrown if a call is made to an unsupported operation.
InvalidSignatureEncodingException
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0

ECNRSignatureVerifier

public ECNRSignatureVerifier(ECPublicKey key,
                             Digest digest,
                             byte[] r,
                             int rOffset,
                             byte[] s,
                             int sOffset)
                      throws CryptoTokenException,
                             CryptoUnsupportedOperationException,
                             InvalidSignatureEncodingException
Constructs an ECNRSignatureVerifier object using a specified digest.

NOTE: If the digest has any state information in it when it is given to the signature verifier, this information will be incorporated into the signature.

A newly created digest, which no update call has been made to, contains no state information in it by default.

NOTE: Also, if r and s point to the same buffer, then it is assumed that the length of r and the length of s are both exactly the length of the private key.

Parameters:
key - The public key used to verify the signature.
digest - The digest used for verification.
r - The array containing the r part of the signature to verify. Note that r is an element of the finite field that the elliptic curve is defined over.
rOffset - The offset, or start position, of the signature data within the r array.
s - The array containing the s part of the signature to verify. Note that s is an element of the finite field that the elliptic curve is defined over.
sOffset - The offset, or start position, of the signature data within the s array.
Throws:
CryptoTokenException - Thrown if an error occurs with the crypto token or the crypto token is invalid.
CryptoUnsupportedOperationException - Thrown if a call is made to an unsupported operation.
InvalidSignatureEncodingException
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0


Method Detail

getAlgorithm

public String getAlgorithm()
Returns the name of the signing algorithm used, ie "ECNR/" + Digest.getAlgorithm().

Specified by:
getAlgorithm in interface SignatureVerifier
Returns:
A String representing the name of the algorithm.
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0

update

public void update(int data)
Description copied from interface: SignatureVerifier
Adds additional message data to the signature.

Specified by:
update in interface SignatureVerifier
Parameters:
data - The byte to be hashed.
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0

update

public void update(byte[] data)
Description copied from interface: SignatureVerifier
Adds additional message data to the signature.

Specified by:
update in interface SignatureVerifier
Parameters:
data - A byte array containing the message data to hash.
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0

update

public void update(byte[] data,
                   int offset,
                   int length)
Description copied from interface: SignatureVerifier
Adds additional message data to the signature.

Specified by:
update in interface SignatureVerifier
Parameters:
data - The message data to hash.
offset - The offset, or initial position to start reading in the data.
length - The amount of data to read.
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0

verify

public boolean verify()
               throws CryptoTokenException,
                      CryptoUnsupportedOperationException
Description copied from interface: SignatureVerifier
Returns true if the signature is valid, false otherwise.

Specified by:
verify in interface SignatureVerifier
Returns:
A boolean that returns true if the signature is valid, false otherwise.
Throws:
CryptoTokenException - Thrown when a problem occurs with a crypto token or the crypto token is invalid.
CryptoUnsupportedOperationException - Thrown when a call is made to an unsupported operation.
Category:
Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
Since:
BlackBerry API 3.6.0





Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal