java.lang.Object |
↳ |
xades4j.providers.impl.DefaultBasicSignatureOptionsProvider |
Class Overview
The default implementation of BasicSignatureOptionsProvider
. The defaults
are:
- includeSigningCertificate: true
- includePublicKey: false
- signSigningCertificate: false
Summary
Public Methods |
boolean
|
includePublicKey()
Indicates whether a ds:KeyValue element containing the public key's
value should be included in ds:KeyInfo .
|
boolean
|
includeSigningCertificate()
Indicates whether the signing certificate, the subject name and issuer/serial
should be included within ds:KeyInfo .
|
boolean
|
signSigningCertificate()
Indicates whether the signature should cover the ds:X509Certificate
element containing the signing certificate.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
xades4j.providers.BasicSignatureOptionsProvider
abstract
boolean
|
includePublicKey()
Indicates whether a ds:KeyValue element containing the public key's
value should be included in ds:KeyInfo .
|
abstract
boolean
|
includeSigningCertificate()
Indicates whether the signing certificate, the subject name and issuer/serial
should be included within ds:KeyInfo .
|
abstract
boolean
|
signSigningCertificate()
Indicates whether the signature should cover the ds:X509Certificate
element containing the signing certificate.
|
|
Public Constructors
public
DefaultBasicSignatureOptionsProvider
()
public
DefaultBasicSignatureOptionsProvider
(boolean includeSigningCertificate, boolean includePublicKey, boolean signSigningCertificate)
Public Methods
public
boolean
includePublicKey
()
Indicates whether a ds:KeyValue
element containing the public key's
value should be included in ds:KeyInfo
.
Returns
true
if the public key should be included; false otherwise
public
boolean
includeSigningCertificate
()
Indicates whether the signing certificate, the subject name and issuer/serial
should be included within ds:KeyInfo
.
Returns
true
if the certificate should be included; false otherwise
public
boolean
signSigningCertificate
()
Indicates whether the signature should cover the ds:X509Certificate
element containing the signing certificate. This is only considered if
includeSigningCertificate()
returns true
.
Returns
true
if the certificate should be signed; false otherwise