123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /*
- * Copyright 2018 Scytl Secure Electronic Voting SA
- *
- * All rights reserved
- *
- * See our extended copyright notice in *file 'Copyright.txt' which is part of this source code package
- */
- module.exports = function(Config) {
- return {
- homomorphic: {
- cipher: {
- secureRandom: {
- provider: Config.homomorphic.cipher.secureRandom.provider.SCYTL
- }
- }
- },
- asymmetric: {
- keypair: {
- encryption: {
- algorithm: Config.asymmetric.keypair.encryption.algorithm.RSA,
- provider: Config.asymmetric.keypair.encryption.provider.FORGE,
- keyLength: Config.asymmetric.keypair.encryption.keyLength.KL_2048,
- publicExponent: Config.asymmetric.keypair.encryption.publicExponent.F4
- },
- secureRandom: {
- provider: Config.asymmetric.keypair.secureRandom.provider.SCYTL
- }
- },
- signer: {
- algorithm: Config.asymmetric.signer.algorithm.RSA,
- provider: Config.asymmetric.signer.provider.FORGE,
- hash: Config.asymmetric.signer.hash.SHA256,
- padding: {
- PSS: {
- name: Config.asymmetric.signer.padding.PSS.name,
- hash: Config.asymmetric.signer.padding.PSS.hash.SHA256,
- mask: {
- MGF1: {
- name: Config.asymmetric.signer.padding.PSS.mask.MGF1.name,
- hash: Config.asymmetric.signer.padding.PSS.mask.MGF1.hash.SHA256
- }
- },
- saltLengthBytes: Config.asymmetric.signer.padding.PSS.saltLengthBytes.SL_32
- }
- },
- publicExponent: Config.asymmetric.signer.publicExponent.F4,
- secureRandom: {
- provider: Config.asymmetric.signer.secureRandom.provider.SCYTL
- }
- },
- cipher: {
- algorithm: Config.asymmetric.cipher.algorithm.RSA_KEM,
- secretKeyLengthBytes: Config.asymmetric.cipher.algorithm.RSA_KEM.secretKeyLengthBytes.KL_16,
- ivLengthBytes : Config.asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes.IV_12,
- tagLengthBytes : Config.asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes.TL_16,
- deriver: Config.asymmetric.cipher.algorithm.RSA_KEM.deriver.name.KDF1,
- hash: Config.asymmetric.cipher.algorithm.RSA_KEM.deriver.messagedigest.algorithm.SHA256,
- provider: Config.asymmetric.cipher.provider.FORGE,
- secureRandom: {
- provider: Config.asymmetric.cipher.secureRandom.provider.SCYTL
- }
- }
- },
- primitives: {
- secureRandom: {
- provider: Config.primitives.secureRandom.provider.SCYTL
- },
- messagedigest: {
- algorithm: Config.primitives.messagedigest.algorithm.SHA256,
- provider: Config.primitives.messagedigest.provider.FORGE
- },
- derivation: {
- pbkdf: {
- provider: Config.primitives.derivation.pbkdf.provider.FORGE,
- hash: Config.primitives.derivation.pbkdf.hash.SHA256,
- saltLengthBytes: Config.primitives.derivation.pbkdf.saltLengthBytes.SL_32,
- keyLengthBytes: Config.primitives.derivation.pbkdf.keyLengthBytes.KL_16,
- iterations: Config.primitives.derivation.pbkdf.iterations.I_32000
- }
- }
- },
- stores: {},
- symmetric: {
- secretkey: {
- encryption: {
- length: Config.symmetric.secretkey.encryption.lengthBytes.SK_16
- },
- mac: {
- length: Config.symmetric.secretkey.mac.lengthBytes.SK_32
- },
- secureRandom: {
- provider: Config.symmetric.secretkey.secureRandom.provider.SCYTL
- }
- },
- cipher: {
- provider: Config.symmetric.cipher.provider.FORGE,
- algorithm: {
- AES128_GCM: {
- name: Config.symmetric.cipher.algorithm.AES128_GCM.name,
- keyLengthBytes: Config.symmetric.cipher.algorithm.AES128_GCM.keyLengthBytes,
- tagLengthBytes: Config.symmetric.cipher.algorithm.AES128_GCM.tagLengthBytes
- }
- },
- initializationVectorLengthBytes: Config.symmetric.cipher.initializationVectorLengthBytes.IV_12,
- secureRandom: {
- provider: Config.symmetric.cipher.secureRandom.provider.SCYTL
- }
- },
- mac: {
- hash: Config.symmetric.mac.hash.SHA256,
- provider: Config.symmetric.mac.provider.FORGE
- }
- },
- proofs: {
- secureRandom: {
- provider: Config.proofs.secureRandom.provider.SCYTL
- },
- messagedigest: {
- algorithm: Config.proofs.messagedigest.algorithm.SHA256,
- provider: Config.proofs.messagedigest.provider.FORGE
- },
- charset: Config.proofs.charset.UTF8
- },
- digitalenvelope: {
- symmetric: {
- secretkey: {
- encryption: {
- lengthBytes: Config.symmetric.secretkey.encryption.lengthBytes.SK_16
- },
- mac: {
- lengthBytes: Config.symmetric.secretkey.mac.lengthBytes.SK_32
- },
- secureRandom: {
- provider: Config.symmetric.secretkey.secureRandom.provider.SCYTL
- }
- },
- cipher: {
- provider: Config.symmetric.cipher.provider.FORGE,
- algorithm: {
- AES128_GCM: {
- name: Config.symmetric.cipher.algorithm.AES128_GCM.name,
- keyLengthBytes: Config.symmetric.cipher.algorithm.AES128_GCM.keyLengthBytes,
- tagLengthBytes: Config.symmetric.cipher.algorithm.AES128_GCM.tagLengthBytes
- }
- },
- initializationVectorLengthBytes: Config.symmetric.cipher.initializationVectorLengthBytes.IV_12,
- secureRandom: {
- provider: Config.symmetric.cipher.secureRandom.provider.SCYTL
- }
- },
- mac: {
- hash: Config.symmetric.mac.hash.SHA256,
- provider: Config.symmetric.mac.provider.FORGE
- }
- },
- asymmetric: {
- cipher: {
- algorithm: Config.asymmetric.cipher.algorithm.RSA_KEM,
- secretKeyLengthBytes: Config.asymmetric.cipher.algorithm.RSA_KEM.secretKeyLengthBytes.KL_16,
- ivLengthBytes: Config.asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes.IVL_12,
- tagLengthBytes: Config.asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes.TL_16,
- deriver: Config.asymmetric.cipher.algorithm.RSA_KEM.deriver.name.KDF1,
- hash: Config.asymmetric.cipher.algorithm.RSA_KEM.deriver.messagedigest.algorithm.SHA256,
- symmetricCipher: Config.asymmetric.cipher.algorithm.RSA_KEM.cipher.AESGCM,
- provider: Config.asymmetric.cipher.provider.FORGE,
- secureRandom: {
- provider: Config.asymmetric.cipher.secureRandom.provider.SCYTL
- }
- }
- }
- }
- };
- };
|