Projet

Général

Profil

« Précédent | Suivant » 

Révision 19b58bab

Ajouté par Remy Menard il y a plus de 11 ans

Version 1.9

  • All:
    - use TLS for secured links
    - SigMa is now fully functionnal
    - completed documention
    - a lot of bugs fixed!
  • SigMa:
    - signature creation from the canonical form of the event
    - signature creation using ECDSA algorithm
    - signature is correctly verified
  • ETa:
    - manage the extension identifying the owner of the event
    - if no identity is provided, the identity of the certificate is used
  • EpcisPHi:
    - access to the web interface of policy management is made by
    certificate
  • OMeGa:
    - if no identity is provided, the identity of the certificate is used
  • IoTa-Installer:
    - create and use certificates for TLS
    - configure Apache Tomcat for TLS
  • Greyc letters figures:
    - show SigMa library (SigMa-Commons)

Voir les différences:

SigMa/SigMa-Test/src/main/java/fr/unicaen/iota/sigma/test/SigMaTest.java
/*
* This program is a part of the IoTa Project.
* This program is a part of the IoTa project.
*
* Copyright © 2012 Université de Caen Basse-Normandie, GREYC
* Copyright © 2012-2013 Université de Caen Basse-Normandie, GREYC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......
*/
package fr.unicaen.iota.sigma.test;
import fr.unicaen.iota.eta.capture.ETaCaptureClient;
import fr.unicaen.iota.sigma.SigMaFunctions;
import fr.unicaen.iota.sigma.client.SigMaClient;
import fr.unicaen.iota.sigma.xsd.VerifyResponse;
......
import javax.xml.datatype.DatatypeConfigurationException;
import javax.xml.datatype.DatatypeFactory;
import javax.xml.datatype.XMLGregorianCalendar;
import org.fosstrak.epcis.captureclient.CaptureClient;
import org.fosstrak.epcis.model.*;
/**
......
public class SigMaTest {
public static void main(String[] args) {
if (args.length != 4) {
System.err.println("usage: SigMaTest keystore password EpcisCaptureURL SigMaURL");
if (args.length != 8) {
System.err.println("usage: SigMaTest ETaCaptureURL SigMaURL keystoreTLS ksPasswordTLS truststoreTLS tsPasswordTLS keystoreSign ksPasswordSign");
System.err.println();
System.err.println("example: SigMaTest https://localhost:8443/eta/capture https://localhost:8443/sigma /srv/keystore.jks store_pw /srv/truststore.jks trust_pw /srv/sigma-cert.p12 store_pw");
System.exit(1);
}
String keyStore = args[0];
String ksPassword = args[1];
String captureUrl = args[2];
String sigmaAddress = args[3];
String captureUrl = args[0];
String sigmaAddress = args[1];
String keystoreTLS = args[2];
String ksPasswordTLS = args[3];
String truststoreTLS = args[4];
String tsPasswordTLS = args[5];
String keystoreSign = args[6];
String ksPasswordSign = args[7];
ObjectEventType objEvent = new ObjectEventType();
XMLGregorianCalendar now = null;
......
EventListType eventList = new EventListType();
try {
SigMaFunctions sigMAFunctions = new SigMaFunctions(keyStore, ksPassword);
SigMaFunctions sigMAFunctions = new SigMaFunctions(keystoreSign, ksPasswordSign);
sigMAFunctions.sign(objEvent);
JAXBElement<ObjectEventType> jaxbevt = new ObjectFactory().createEventListTypeObjectEvent(objEvent);
......
epcisDoc.setSchemaVersion(new BigDecimal("1.0"));
epcisDoc.setCreationDate(now);
CaptureClient client = new CaptureClient(captureUrl);
ETaCaptureClient client = new ETaCaptureClient(captureUrl, keystoreTLS, ksPasswordTLS, truststoreTLS, tsPasswordTLS);
int httpResponseCode = client.capture(epcisDoc);
if (httpResponseCode != 200) {
System.err.println("The event could NOT be captured!");
}
SigMaClient sigMaClient = new SigMaClient(sigmaAddress);
SigMaClient sigMaClient = new SigMaClient(sigmaAddress, keystoreTLS, ksPasswordTLS, truststoreTLS, tsPasswordTLS);
VerifyResponse response = sigMaClient.verify(objEvent).getVerifyResponse();
boolean verification = response.isValue();
System.out.println("This signature is " + verification);

Formats disponibles : Unified diff