-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xades-X-L and a xades-A support #146
Xades-X-L and a xades-A support #146
Commits on Jul 13, 2016
-
fix test case broken by revision 247 (changed paths)
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9dae633 - Browse repository at this point
Copy the full SHA 9dae633View commit details -
basic support for XAdES-X signature verification
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dc1a599 - Browse repository at this point
Copy the full SHA dc1a599View commit details -
add tests for enriching C form to X and verification of X form
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4f4f285 - Browse repository at this point
Copy the full SHA 4f4f285View commit details -
preliminary support for XAdES-X-L form verification
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db4a610 - Browse repository at this point
Copy the full SHA db4a610View commit details -
extract certs and CRLs from -X-L form tags
CertificateValues and RevocationValues contain certificates, CRLs and OCSP responses that can be useful in validation of Signature. Parse them and add to intermediate certs and CRLs CertStore for later use Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c392ca8 - Browse repository at this point
Copy the full SHA c392ca8View commit details -
add support for AttrAuthoritiesCertValues and AttributeRevocationValues
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bf1fa0d - Browse repository at this point
Copy the full SHA bf1fa0dView commit details -
test creation of optional -X-L form properties
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 56c50bb - Browse repository at this point
Copy the full SHA 56c50bbView commit details -
add certificates and CRLs used in verification of TimeStamps to -X-L …
…form Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f368348 - Browse repository at this point
Copy the full SHA f368348View commit details -
separate certificate verifiers for TimeStamps and Signature
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 177a5ce - Browse repository at this point
Copy the full SHA 177a5ceView commit details -
backend for generating our own certificates for tests
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1db7b94 - Browse repository at this point
Copy the full SHA 1db7b94View commit details -
test XAdES-X-L form with minimal trust anchors
XAdES-X-L form should contain all the data needed to verify both the Attributes (TimeStamps) and Signature, the only data needed are the CAs that validate the CRLs and leaf certificates (user and TSA) uses minimal validity periods (certificate loose their validity as soon as they're not needed) and minimum of verification anchors (during validaton only one leaf certificate is valid at a time) Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0210c81 - Browse repository at this point
Copy the full SHA 0210c81View commit details -
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bb7cd96 - Browse repository at this point
Copy the full SHA bb7cd96View commit details -
fix test01_T_ver2 caused by bug in X509CRLSelector
Sun implementation of X509CRLSelector doesn't return CRLs published after the date provided to it using the setDateAndTime() method this makes it very hard to validate certificates in the past (one needs CRL from time of verification) and impossible to enforce grace period (which requires using CRLs published after the time of verification). The correct behaviour is in Bouncy Castle provider, so use it instead. http://java.sun.com/javase/6/docs/technotes/guides/security/certpath/CertPathProgGuide.html#X509CRLSelector http://www.bouncycastle.org/jira/browse/BJA-249 Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1231d52 - Browse repository at this point
Copy the full SHA 1231d52View commit details -
use the new verifier implementation
Use new verifier implementation, for now it's mostly a copy of the old verifier. Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1126b58 - Browse repository at this point
Copy the full SHA 1126b58View commit details -
create hybrid approach unmarshaller
default unmarshaller doesn't remember relations between properties and XML nodes, create one that does To make it possible, we need property data collector that can store relationship between property and XML node, add such one Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1e57ae6 - Browse repository at this point
Copy the full SHA 1e57ae6View commit details -
default verifier doesn't know how to use the Elements that HybridQualifyingPropertiesUnmarshaller collected, add one that knows how to use them and pass this additional informatino to property verifiers Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 34cfade - Browse repository at this point
Copy the full SHA 34cfadeView commit details -
provide XML location information to TimeStampVerifiers
SigAndRefsTimeStamp must take properties in the order of appearence within the signature. Previous mechanism used deterministic algorithm to put properties in specific order. Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 300677b - Browse repository at this point
Copy the full SHA 300677bView commit details -
constraints on time stamps, certificates and CRLs
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 57515b7 - Browse repository at this point
Copy the full SHA 57515b7View commit details -
allow for creation of C form from T form with current CRLs
Sun X509CRLSelector doesn't return CRLs that were published "in future", but to properly validate signature we have to use time from earliest valid time stamp implement custom CRLSelector that returns usable CRLs Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 257c457 - Browse repository at this point
Copy the full SHA 257c457View commit details -
make PKIX certificate validator more tolerant of input
If we're validating advanced forms of XAdES (C and above), we can sometimes get CRLs that look as if they came from future Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 53d07d9 - Browse repository at this point
Copy the full SHA 53d07d9View commit details -
PKIX cert validator should be tolerant of input
If we're validating advanced forms of XAdES, we need to provide validator with certificates and CRLs we found in Properties, they can be empty so we should be able handle this case gracefully Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5ea45dd - Browse repository at this point
Copy the full SHA 5ea45ddView commit details -
make verifiers of EncapsulatedPKIData collect the PKI data
when dealing with XAdES-X-L form, we may have full revocation data at hand, then the verification needs only trust anchors (CA certificates) but we must allow for collection of those certificates and CRLs during validation of the EncapsulatedPKIData properties: CertificateValues, RevocationValues, AttrAuthoritiesCertValues and AttributeRevocationValues Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8aacc5c - Browse repository at this point
Copy the full SHA 8aacc5cView commit details -
fix XadesVerifierErrosTest tests
change of verificato to soft-fail made the exception thrown different Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bff7f81 - Browse repository at this point
Copy the full SHA bff7f81View commit details -
extend XadesHybridVerifier to XAdES-X-L support
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ffc46e4 - Browse repository at this point
Copy the full SHA ffc46e4View commit details -
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 32e34da - Browse repository at this point
Copy the full SHA 32e34daView commit details -
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6c0ea57 - Browse repository at this point
Copy the full SHA 6c0ea57View commit details -
add support for validating ArchiveTimeStamp property
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3432c01 - Browse repository at this point
Copy the full SHA 3432c01View commit details -
Align implementation with version 1.4.2 of the standard
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 903c1d4 - Browse repository at this point
Copy the full SHA 903c1d4View commit details -
update form checker to XAdES-A support
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 73209ff - Browse repository at this point
Copy the full SHA 73209ffView commit details -
add ArchiveTimeStamp unmarshaller
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b41dfe1 - Browse repository at this point
Copy the full SHA b41dfe1View commit details -
add ability to extend X-L form to basic A form
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 65ba11e - Browse repository at this point
Copy the full SHA 65ba11eView commit details -
allow for the validation of timestamp to change time
When validating XAdES-A, we need to be able to change verification time after verifying the time stamp in case of all other time stamps, we can do this only after validating all time stamps of specific type, this is ensured by QualifyingPropertiesVerifier Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a7afa61 - Browse repository at this point
Copy the full SHA a7afa61View commit details -
add XAdES-A tests with past timestamps
add more detailed tests that test currentTime passing in verification context Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5ba94f9 - Browse repository at this point
Copy the full SHA 5ba94f9View commit details -
add note about grace time and verification
If we want to create small XAdES signatures (KiB wise) then we shouldn't add revocation data that will be useless in future, especially when the verificator enforces grace period for signatures Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bde3816 - Browse repository at this point
Copy the full SHA bde3816View commit details -
add TimeStampValidationData property
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d446f08 - Browse repository at this point
Copy the full SHA d446f08View commit details -
add support for XAdES 1.4.1 ValidationDataType
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 176413d - Browse repository at this point
Copy the full SHA 176413dView commit details -
unmarshalling of TimeStampValidationData property
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a2c09e2 - Browse repository at this point
Copy the full SHA a2c09e2View commit details -
add ValidationData property structure verifier
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9b0ab83 - Browse repository at this point
Copy the full SHA 9b0ab83View commit details -
add TimeStampValidationData verifier
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4e4edc4 - Browse repository at this point
Copy the full SHA 4e4edc4View commit details -
emphisise that TimeStampValidationData is from 1.4.1
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 62d6066 - Browse repository at this point
Copy the full SHA 62d6066View commit details -
add TimeStampValidationData marshaller
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8a64130 - Browse repository at this point
Copy the full SHA 8a64130View commit details -
TimeStampValidationData property generator
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 92986f7 - Browse repository at this point
Copy the full SHA 92986f7View commit details -
allow for adding TimeStampValidationData
add a fake transition from A form to A-VD form that will add TimeStampValidationData but won't change the form, as returned by XAdESFormChecker Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2e7f582 - Browse repository at this point
Copy the full SHA 2e7f582View commit details -
add test for creation and consumption of TimeStampValidationData
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 35b924c - Browse repository at this point
Copy the full SHA 35b924cView commit details -
add support for A form properties to ArchiveTimeStampVerifier
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 66fe05e - Browse repository at this point
Copy the full SHA 66fe05eView commit details -
add simple test for TimeStampStampValidationData prop creation
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 32bf4aa - Browse repository at this point
Copy the full SHA 32bf4aaView commit details -
align ValidationDataType with version 1.4.2 of standard
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0b8d4c3 - Browse repository at this point
Copy the full SHA 0b8d4c3View commit details -
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a288b70 - Browse repository at this point
Copy the full SHA a288b70View commit details -
fix message in AgedTimeStampTest
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 58163e7 - Browse repository at this point
Copy the full SHA 58163e7View commit details -
add test for A-TimeStamping already A-TimeStamped document
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6e3b65e - Browse repository at this point
Copy the full SHA 6e3b65eView commit details -
add support for A-timeStamping already A-timeStamped document
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 289c4d4 - Browse repository at this point
Copy the full SHA 289c4d4View commit details -
don't require optional properties in ArchiveTimeStamp
For ArchiveTimeStamp only CertificateValues and RevocationValues MUST be present Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 58f93d6 - Browse repository at this point
Copy the full SHA 58f93d6View commit details -
add support for creating multiple timeStamps of T and X type
while we can verify documents with multiple timeStamps (because the verificator uses soft-fail approach) we weren't able to create multiple T- or X-form timestamps by extending signature Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6807b7e - Browse repository at this point
Copy the full SHA 6807b7eView commit details -
save validation data with time stamp property
To ease the life of library users, return validation data used to verify time stamp properties in the property object itself. As a small bonus, gets rid of method invocation by reflection in TimeStampVerifierBase. Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c6ddb9f - Browse repository at this point
Copy the full SHA c6ddb9fView commit details -
clean up SurrogateTimeStampTokenProvider
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 63ce052 - Browse repository at this point
Copy the full SHA 63ce052View commit details -
update JavaDocs to reflect support for XAdES-A
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4284c92 - Browse repository at this point
Copy the full SHA 4284c92View commit details -
make certs and CRLs saved in properties unique
If there are multiple timestamps signed by the same TSA, both the certificate and CRL used to veriy it will be saved multiple times. Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3c99612 - Browse repository at this point
Copy the full SHA 3c99612View commit details -
add only non duplicated data to A-VD form
We only need to add a certificate once to XAdES signature. This change makes the generated signatures smaller. Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4e6ae87 - Browse repository at this point
Copy the full SHA 4e6ae87View commit details -
consider parameters individually in tsValDataProp
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 47f4f40 - Browse repository at this point
Copy the full SHA 47f4f40View commit details -
don't assume presence of data in TSValData property
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 72ad4f3 - Browse repository at this point
Copy the full SHA 72ad4f3View commit details -
don't try to create empty TSVerData property
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4b333a7 - Browse repository at this point
Copy the full SHA 4b333a7View commit details -
because those tests are made using current time and the same TSA, TimeStampVerificationData won't have any data and as such won't be created Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3f30b7a - Browse repository at this point
Copy the full SHA 3f30b7aView commit details -
update AgedTimeStampTest for new TSValData creator
TimeStampValidationData creator tries not to put CRLs that weren't published after last time stamping of the document, because of that, tests that use certificates with very short validity (and quickly extends to advanced forms) can't depend on certificates and CRLs added by TimeStampValidationData Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1f418e6 - Browse repository at this point
Copy the full SHA 1f418e6View commit details -
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a866046 - Browse repository at this point
Copy the full SHA a866046View commit details -
add tests with time stamp validity measured in years, multiple timestamps per each form, etc. Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 38b6303 - Browse repository at this point
Copy the full SHA 38b6303View commit details -
fix variable names in PropertiesUtils
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 63d29c0 - Browse repository at this point
Copy the full SHA 63d29c0View commit details -
clean imports and add code comments
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0fa8667 - Browse repository at this point
Copy the full SHA 0fa8667View commit details -
add validation data before validating all properties
Because we validate properties in reverse order, but they are created in chronological order, the certificates or CRLs may not yet be available, to work around this problem, first add all certificates and CRLs to verification context (as untrusted certificates) and only then validate all properties. fixes test case test04_3AVD_ver2 and test04_3AVD_ver4 from AgedTimeStampTest Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f686109 - Browse repository at this point
Copy the full SHA f686109View commit details -
don't fail windows-only tests on non-windows platforms
Signed-off-by: Tiago Rossi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c9e73a3 - Browse repository at this point
Copy the full SHA c9e73a3View commit details -
From: Hubert Kario <[email protected]> There is a major issue with validation of the A from. It fails for enveloping signature because of not correctly implementing XAdES v1.4.2 specification clause G.2.2.16.2.4, point 1) of particular rules for implicit mechanism. Here's a patch fixing the problem, to be applied on top of aforementioned patches.
Tiago Rossi committedJul 13, 2016 Configuration menu - View commit details
-
Copy full SHA for 53b75c2 - Browse repository at this point
Copy the full SHA 53b75c2View commit details
Commits on Jul 14, 2016
-
Merge branch 'master' into xades_a_support
Conflicts: src/main/java/xades4j/providers/impl/DefaultTimeStampVerificationProvider.java src/main/java/xades4j/verification/XadesVerifier.java src/main/java/xades4j/verification/XadesVerifierImpl.java src/main/java/xades4j/xml/bind/xades/XmlUnsignedSignaturePropertiesType.java src/main/java/xades4j/xml/bind/xades/XmlValidationDataType.java src/test/java/xades4j/production/SignerTTest.java src/test/java/xades4j/providers/impl/PKCS11KeyStoreKeyingDataProviderTest.java src/test/java/xades4j/verification/VerifyExternalSigsTest.java src/test/java/xades4j/verification/XadesVerifierErrorsTest.java src/test/java/xades4j/verification/XadesVerifierImplTest.java
Tiago Rossi committedJul 14, 2016 Configuration menu - View commit details
-
Copy full SHA for 8614e48 - Browse repository at this point
Copy the full SHA 8614e48View commit details -
Tiago Rossi committed
Jul 14, 2016 Configuration menu - View commit details
-
Copy full SHA for c7f3115 - Browse repository at this point
Copy the full SHA c7f3115View commit details
Commits on Jul 15, 2016
-
Tiago Rossi committed
Jul 15, 2016 Configuration menu - View commit details
-
Copy full SHA for af0f391 - Browse repository at this point
Copy the full SHA af0f391View commit details -
Tiago Rossi committed
Jul 15, 2016 Configuration menu - View commit details
-
Copy full SHA for 81c60c1 - Browse repository at this point
Copy the full SHA 81c60c1View commit details
Commits on Aug 4, 2016
-
Leandro Souza Costa committed
Aug 4, 2016 Configuration menu - View commit details
-
Copy full SHA for f4fa329 - Browse repository at this point
Copy the full SHA f4fa329View commit details
Commits on Aug 18, 2016
-
Remove DO_BREAK_LINES from Base64 marshaller
Leandro Souza Costa committedAug 18, 2016 Configuration menu - View commit details
-
Copy full SHA for bd7bcb8 - Browse repository at this point
Copy the full SHA bd7bcb8View commit details -
Update bouncycastle and adds support for proxy configuration in tests
Tiago Rossi committedAug 18, 2016 Configuration menu - View commit details
-
Copy full SHA for bb5ccdd - Browse repository at this point
Copy the full SHA bb5ccddView commit details -
Prepare sun-jax.episode for external usage
Tiago Rossi committedAug 18, 2016 Configuration menu - View commit details
-
Copy full SHA for b25e9dd - Browse repository at this point
Copy the full SHA b25e9ddView commit details
Commits on Sep 16, 2016
-
Select the right certificate from ds:KeyInfo
Leandro Souza Costa committedSep 16, 2016 Configuration menu - View commit details
-
Copy full SHA for 1272a69 - Browse repository at this point
Copy the full SHA 1272a69View commit details
Commits on Sep 23, 2016
-
Add custom unsigned properties to ArchiveTimeStamp digest
Leandro Souza Costa committedSep 23, 2016 Configuration menu - View commit details
-
Copy full SHA for 282d302 - Browse repository at this point
Copy the full SHA 282d302View commit details
Commits on Nov 21, 2016
-
Close files after adding to FileSystemDirectoryCertStore
Leandro Souza Costa committedNov 21, 2016 Configuration menu - View commit details
-
Copy full SHA for ad41df4 - Browse repository at this point
Copy the full SHA ad41df4View commit details
Commits on Feb 6, 2017
-
Update test tstoken, crls and xmls
Tiago Rossi committedFeb 6, 2017 Configuration menu - View commit details
-
Copy full SHA for 9732eaa - Browse repository at this point
Copy the full SHA 9732eaaView commit details -
Changes DefaultTimeStampTokenProvider to non final to
permit add monitoring off tsa service
Tiago Rossi committedFeb 6, 2017 Configuration menu - View commit details
-
Copy full SHA for 232bb6a - Browse repository at this point
Copy the full SHA 232bb6aView commit details -
Merge remote-tracking branch 'silegis/xades_a_support' into xades_a_s…
…upport
Tiago Rossi committedFeb 6, 2017 Configuration menu - View commit details
-
Copy full SHA for 37b32f1 - Browse repository at this point
Copy the full SHA 37b32f1View commit details
Commits on Apr 11, 2017
-
DefaultTimeStampTokenProvider.getHttpConnection is now protected.
Tiago Rossi committedApr 11, 2017 Configuration menu - View commit details
-
Copy full SHA for 6cc7332 - Browse repository at this point
Copy the full SHA 6cc7332View commit details
Commits on Feb 5, 2018
-
Merge branch 'master' of https://github.com/luisgoncalves/xades4j.git …
…into feature/xades-x-l-a # Conflicts: # pom.xml # src/main/java/xades4j/providers/impl/AuthenticatedTimeStampTokenProvider.java # src/main/java/xades4j/providers/impl/DefaultTimeStampTokenProvider.java # src/main/java/xades4j/verification/CommitmentTypeVerifier.java # src/main/java/xades4j/verification/QualifyingPropertiesVerifierImpl.java # src/main/java/xades4j/verification/SignatureUtils.java # src/main/java/xades4j/verification/XadesVerificationProfile.java # src/test/cert/csrc.nist/readme.txt # src/test/cert/csrc.nist/trustAnchor # src/test/cert/gva/readme.txt # src/test/cert/gva/rootgva_der.crl # src/test/cert/gva/rootgva_der_0?2?_05_2011 .crl # src/test/cert/my/myStore # src/test/cert/my/readme.txt # src/test/java/xades4j/production/SignerBESTest.java # src/test/java/xades4j/verification/VerifierTestBase.java # src/test/java/xades4j/verification/XadesVerifierImplTest.java # src/test/xml/detached.bes.xml # src/test/xml/detached.c.xml # src/test/xml/document.signed.bes.extres.xml # src/test/xml/document.signed.bes.xml # src/test/xml/document.signed.c.xml # src/test/xml/document.signed.epes.xml # src/test/xml/document.signed.t.bes.xml # src/test/xml/document.signed.t.epes.xml
Tiago Rossi committedFeb 5, 2018 Configuration menu - View commit details
-
Copy full SHA for f854856 - Browse repository at this point
Copy the full SHA f854856View commit details
Commits on Feb 6, 2018
-
Remove BoucyCastleProvider from test
Tiago Rossi committedFeb 6, 2018 Configuration menu - View commit details
-
Copy full SHA for 56c36bd - Browse repository at this point
Copy the full SHA 56c36bdView commit details