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:

ETa/User/src/main/java/fr/unicaen/iota/eta/user/UserOperationsModule.java
/*
* This program is a part of the IoTa Project.
* This program is a part of the IoTa project.
*
* Copyright © 2011-2012 Université de Caen Basse-Normandie, GREYC
* Copyright © 2011-2013 Université de Caen Basse-Normandie, GREYC
* Copyright © 2011 Orange Labs
*
* This program is free software: you can redistribute it and/or modify
......
public UserOperationsModule() {
this.backend = new UserOperations();
this.userPep = new UserPEP(Constants.XACML_URL);
this.userPep = new UserPEP(Constants.XACML_URL, Constants.PKS_FILENAME, Constants.PKS_PASSWORD, Constants.TRUST_PKS_FILENAME, Constants.TRUST_PKS_PASSWORD);
}
/**
......
}
/**
* Fetchs
* <code>User</code> corresponding to login and password.
* Fetchs <code>User</code> corresponding to login and password.
*
* @param login The user login.
* @param password The user password.
......
* occurred.
* @throws SecurityExceptionResponse If login or password is incorrect.
*/
public User userLogin(String login, String password)
public User userBasicLogin(String login, String password)
throws ImplementationExceptionResponse, SecurityExceptionResponse {
try {
/*
......
* newCtx.lookup("java:comp/env"); DirContext dirCtxt = (DirContext)
* envCtx.lookup("ldap/gatewayldap");
*/
List<User> userList = backend.userLogin(login, password);
List<User> userList = backend.userBasicLogin(login, password);
if (userList.isEmpty()) {
String msg = "A LDAP error occurred: login or password is incorrect.";
SecurityException se = new SecurityException();
......
}
}
/**
* Fetchs <code>User</code> corresponding to login.
*
* @param login The user login.
* @return The user corresponding to the login.
* @throws ImplementationExceptionResponse If an error involving the base
* occurred.
* @throws SecurityExceptionResponse If login or password is incorrect.
*/
public User userCertLogin(String login)
throws ImplementationExceptionResponse, SecurityExceptionResponse {
try {
/*
* Context newCtx = new InitialContext(); Context envCtx = (Context)
* newCtx.lookup("java:comp/env"); DirContext dirCtxt = (DirContext)
* envCtx.lookup("ldap/gatewayldap");
*/
List<User> userList = backend.userCertLogin(login);
if (userList.isEmpty()) {
String msg = "A LDAP error occurred: login is incorrect.";
SecurityException se = new SecurityException();
se.setReason(msg);
se.setQueryName("userLogin");
SecurityExceptionResponse ser = new SecurityExceptionResponse(msg, se);
LOG.error(msg, ser);
throw ser;
}
return userList.get(0);
} catch (SecurityExceptionResponse ser) {
throw ser;
} catch (ImplementationExceptionResponse ier) {
throw ier;
} catch (Exception ex) {
String msg = "An unexpected error occurred.";
ImplementationException ie = new ImplementationException();
ie.setReason(msg);
ie.setQueryName("userLogin");
ie.setSeverity(ImplementationExceptionSeverity.ERROR);
ImplementationExceptionResponse ier = new ImplementationExceptionResponse(msg, ie, ex);
LOG.error(msg, ier);
throw ier;
}
}
/**
* Fetchs list of
* <code>User</code> corresponding to user ID from the base if the session

Formats disponibles : Unified diff