1 package es.caib.signatura.impl;
2
3 import es.caib.signatura.api.SignatureDataException;
4
5
6
7
8
9
10
11
12
13 public class CMSSignaturev2 extends CMSSignature {
14
15
16
17
18 private static final long serialVersionUID = 1L;
19
20 public CMSSignaturev2(byte[] pkcs7, String contentType)
21 throws SignatureDataException {
22 super(pkcs7, contentType);
23 }
24
25 public CMSSignaturev2(SignatureProviderInterface impl) {
26 super(impl);
27 }
28
29
30
31
32 protected String getInternalClassName() {
33 return "es.caib.signatura.provider.impl.common.CMSSignatureImplv2";
34 }
35
36 }