static XMLCipher |
XMLCipher.getInstance() |
Returns an XMLCipher that implements no specific
transformation, and can therefore only be used for decrypt or
unwrap operations where the encryption method is defined in the
EncryptionMethod element.
|
static XMLCipher |
XMLCipher.getInstance(java.lang.String transformation) |
Returns an XMLCipher that implements the specified
transformation and operates on the specified context document.
|
static XMLCipher |
XMLCipher.getInstance(java.lang.String transformation,
java.lang.String canon) |
Returns an XMLCipher that implements the specified
transformation, operates on the specified context document and serializes
the document with the specified canonicalization algorithm before it
encrypts the document.
|
static XMLCipher |
XMLCipher.getInstance(java.lang.String transformation,
java.lang.String canon,
java.lang.String digestMethod) |
Returns an XMLCipher that implements the specified
transformation, operates on the specified context document and serializes
the document with the specified canonicalization algorithm before it
encrypts the document.
|
static XMLCipher |
XMLCipher.getProviderInstance(java.lang.String provider) |
Returns an XMLCipher that implements no specific
transformation, and can therefore only be used for decrypt or
unwrap operations where the encryption method is defined in the
EncryptionMethod element.
|
static XMLCipher |
XMLCipher.getProviderInstance(java.lang.String transformation,
java.lang.String provider) |
Returns an XMLCipher that implements the specified
transformation and operates on the specified context document.
|
static XMLCipher |
XMLCipher.getProviderInstance(java.lang.String transformation,
java.lang.String provider,
java.lang.String canon) |
Returns an XMLCipher that implements the specified
transformation, operates on the specified context document and serializes
the document with the specified canonicalization algorithm before it
encrypts the document.
|
static XMLCipher |
XMLCipher.getProviderInstance(java.lang.String transformation,
java.lang.String provider,
java.lang.String canon,
java.lang.String digestMethod) |
Returns an XMLCipher that implements the specified
transformation, operates on the specified context document and serializes
the document with the specified canonicalization algorithm before it
encrypts the document.
|