# Adding XAdES signatures to an existing container
In this demo, we let the end user choose an ASiC-E container and manually enter a XAdES signature.
# javascript
// import {addSignatureAsice} from '@eid-easy/eideasy-browser-js';
// import { saveAs } from 'file-saver';
// rootElem is the parent html element of this demo
const dom = {
buttonAdd: rootElem.querySelector('.js-addSignatures'),
signatureInput: rootElem.querySelector('.js-signature'),
containerInput: rootElem.querySelector('.js-containerInput'),
};
dom.buttonAdd.addEventListener('click', async (e) => {
e.preventDefault();
// You can use a Blob directly as input, no need to use the FileReader object.
// File objects (https://developer.mozilla.org/en-US/docs/Web/API/File)
// that you get from the input[type="file"] are Blobs. This means
// that you can use them directly as an input for the addSignatureAsice method.
const container = await addSignatureAsice(dom.containerInput.files[0], dom.signatureInput.value);
// addSignatureAsice returns a promise that resolves with a JSZip instance.
// So, you can use the exact same methods that JSZip (https://github.com/Stuk/jszip) provides.
// addSignatureAsice uses JSZip because ASiC-E containers are plain old ZIP files
// albeit with a specific structure and contents
// https://stuk.github.io/jszip/documentation/api_jszip/generate_async.html
const blob = await container.generateAsync({ type: 'blob' });
// we are using https://github.com/eligrey/FileSaver.js/ here to save/download
// the final file to the end user's machine
saveAs((blob), 'modified.asice');
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# html
<div class="formRow">
<label for="containerInput">ASiC-E container</label>
<input
class="js-containerInput"
id="containerInput"
type="file"
>
</div>
<div class="formRow">
<label for="signature">XAdES signature</label>
<textarea
class="js-signature"
name="signature"
id="signature"
rows="10"
></textarea>
</div>
<button class="js-addSignatures">
Add signature and download the container
</button>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22