Signature.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */


  20. package org.openspcoop2.utils.security;

  21. import java.security.PrivateKey;

  22. import org.openspcoop2.utils.UtilsException;
  23. import org.openspcoop2.utils.certificate.KeyStore;

  24. /**
  25.  * Signature
  26.  *
  27.  * @author Poli Andrea (apoli@link.it)
  28.  * @author $Author$
  29.  * @version $Rev$, $Date$
  30.  */
  31. public class Signature {

  32.     private KeyStore keystore;
  33.     private PrivateKey privateKey;
  34.    
  35.     public Signature(KeyStore keystore, String alias, String passwordPrivateKey) throws UtilsException{
  36.         this.keystore = keystore;
  37.         this.privateKey = this.keystore.getPrivateKey(alias, passwordPrivateKey);
  38.     }
  39.    
  40.     public byte[] sign(String data, String charsetName, String algorithm) throws UtilsException{
  41.         try{
  42.             return this.sign(data.getBytes(charsetName), algorithm);
  43.         }catch(Exception e){
  44.             throw new UtilsException(e.getMessage(),e);
  45.         }
  46.     }
  47.    
  48.     public byte[] sign(byte[] data, String algorithm) throws UtilsException{
  49.         try{
  50.             java.security.Signature sig = java.security.Signature.getInstance(algorithm);
  51.             sig.initSign(this.privateKey);
  52.             sig.update(data);
  53.             return sig.sign();
  54.         }catch(Exception e){
  55.             throw new UtilsException(e.getMessage(),e);
  56.         }
  57.     }

  58. }