123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- /*
- * 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
- */
- /* jshint node:true */
- 'use strict';
- var objs = require('./objs');
- /**
- * @description The configuration options for the cryptographic policy. Provided
- * as a global property of this module.
- * @readonly
- *
- * @property {object} primitives.securerandom - Policy for generating message
- * digests.
- * @property {object} primitives.messageDigest.algorithm - Hash algorithm.
- * @property {string} primitives.messageDigest.algorithm.SHA256 - 'SHA256'
- * @property {string} primitives.messageDigest.algorithm.SHA512_224
- * -'SHA512/224'
- *
- * @property {object} primitives.keyDerivation - Policy for deriving keys.
- * @property {object} primitives.keyDerivation.pbkdf - Password-based key
- * derivation function (PBKDF)
- * @property {object} primitives.keyDerivation.pbkdf.keyLengthBytes - Key
- * length, in bytes.
- * @property {number} primitives.keyDerivation.pbkdf.keyLengthBytes.KL_16 - 16
- * @property {number} primitives.keyDerivation.pbkdf.keyLengthBytes.KL_32 - 32
- * @property {object} primitives.keyDerivation.pbkdf.minSaltLengthBytes -
- * Minimum salt length, in bytes.
- * @property {number} primitives.keyDerivation.pbkdf.minSaltLengthBytes.SL_20 -
- * 20.
- * @property {number} primitives.keyDerivation.pbkdf.minSaltLengthBytes.SL_32 -
- * 32
- * @property {object} primitives.keyDerivation.pbkdf.hashAlgorithm - Hash
- * algorithm.
- * @property {string} primitives.keyDerivation.pbkdf.hashAlgorithm.SHA256 -
- * 'SHA256'
- * @property {string} primitives.keyDerivation.pbkdf.hashAlgorithm.SHA512_224 -
- * 'SHA512/224'
- * @property {object} primitives.keyDerivation.pbkdf.numIterations - Number of
- * iterations.
- * @property {number} primitives.keyDerivation.pbkdf.I_1 - 1
- * @property {number} primitives.keyDerivation.pbkdf.I_8000 - 8000
- * @property {number} primitives.keyDerivation.pbkdf.I_16000 - 16000
- * @property {number} primitives.keyDerivation.pbkdf.I_32000 - 32000
- * @property {number} primitives.keyDerivation.pbkdf.I_64000 - 64000
- *
- * @property {object} symmetric.secretkey - Policy for generating secret keys.
- * @property {object} symmetric.secretkey.encryption - Secret key for
- * encryption.
- * @property {object} symmetric.secretKey.encryption.lengthBytes - Key length,
- * in bytes.
- * @property {number} symmetric.secretKey.encryption.lengthBytes.KL_16 - 16
- * @property {number} symmetric.secretKey.encryption.lengthBytes.KL_32 - 32
- * @property {object} symmetric.secretkey.mac - Secret key for MAC generation.
- * @property {object} symmetric.secretKey.mac.lengthBytes - Key length, in
- * bytes.
- * @property {number} symmetric.secretKey.mac.lengthBytes.KL_16 - 16
- * @property {number} symmetric.secretKey.mac.lengthBytes.KL_32 - 32
- *
- * @property {object} symmetric.cipher - Policy for symmetrically encrypting and
- * decrypting data.
- * @property {object} symmetric.cipher.algorithm - Cipher algorithm.
- * @property {object} symmetric.cipher.algorithm.AES_GCM - AES-GCM algorithm.
- * @property {string} symmetric.cipher.algorithm.AES_GCM.name - 'AES-GCM'
- * @property {object} symmetric.cipher.algorithm.AES_GCM.keyLengthBytes - Key
- * length, in bytes.
- * @property {number} symmetric.cipher.algorithm.AES_GCM.keyLengthBytes.KL_16 -
- * 16
- * @property {number} symmetric.cipher.algorithm.AES_GCM.keyLengthBytes.KL_32 -
- * 32
- * @property {object} symmetric.cipher.algorithm.AES_GCM.tagLengthBytes - Tag
- * length, in bytes.
- * @property {number} symmetric.cipher.algorithm.AES_GCM.tagLengthBytes.TL_16 -
- * 16
- * @property {number} symmetric.cipher.algorithm.AES_GCM.tagLengthBytes.TL_32 -
- * 32
- * @property {object} symmetric.cipher.ivLengthBytes - Initialization vector
- * length, in bytes.
- * @property {number} symmetric.cipher.ivLengthBytes.IVL_12 - 12
- * @property {number} symmetric.cipher.ivLengthBytes.IVL_16 - 16
- * @property {number} symmetric.cipher.ivLengthBytes.IVL_32 - 32
- * @property {number} symmetric.cipher.ivLengthBytes.IVL_64 - 64
- *
- * @property {object} symmetric.mac - Policy for generating MAC's.
- * @property {object} symmetric.mac.hashAlgorithm - Hash algorithm.
- * @property {string} symmetric.mac.hashAlgorithm.SHA256 = 'SHA256'
- * @property {string} symmetric.mac.hashAlgorithm.SHA512_224 = 'SHA512/224'
- *
- * @property {object} asymmetric.keyPair - Policy for generating key pairs.
- * @property {object} asymmetric.keyPair.encryption - Encryption key pair.
- * @property {object} asymmetric.keyPair.encryption.algorithm - Key pair
- * generation algorithm.
- * @property {string} asymmetric.keyPair.encryption.algorithm.RSA - 'RSA'.
- * @property {object} asymmetric.keyPair.encryption.keyLengthBits - Key length,
- * in bits.
- * @property {number} asymmetric.keyPair.encryption.keyLengthBits.KL_2048 - 2048
- * @property {number} asymmetric.keyPair.encryption.keyLengthBits.KL_3072 - 3072
- * @property {number} asymmetric.keyPair.encryption.keyLengthBits.KL_4096 - 4096
- * @property {object} asymmetric.keyPair.encryption.publicExponent - Public
- * exponent.
- * @property {number} asymmetric.keyPair.encryption.publicExponent.F4 - 65537
- *
- * @property {object} asymmetric.signer - Policy for signing data and verifying
- * signatures.
- * @property {object} asymmetric.signer.algorithm - Signer algorithm.
- * @property {string} asymmetric.signer.algorithm.RSA - 'RSA'
- * @property {object} asymmetric.signer.hashAlgorithm - Hash algorithm.
- * @property {string} asymmetric.signer.hashAlgorithm.SHA256 - SHA256'.
- * @property {string} asymmetric.signer.hashAlgorithm.SHA256_224 - 'SHA512/224'
- * @property {object} asymmetric.signer.padding - Padding.
- * @property {object} asymmetric.signer.padding.PSS - PSS padding.
- * @property {string} asymmetric.signer.padding.PSS.name - 'PSS'
- * @property {object} asymmetric.signer.padding.PSS.hashAlgorithm - Hash
- * algorithm.
- * @property {string} asymmetric.signer.padding.hashAlgorithm.SHA256 - 'SHA256'
- * @property {string} asymmetric.signer.padding.hashAlgorithm.SHA256_224 -
- * 'SHA512/224'
- * @property {object} asymmetric.signer.padding.PSS.saltLengthBytes - Salt
- * length, in bytes.
- * @property {number} asymmetric.signer.padding.PSS.saltLengthBytes.SL_32 - 32
- * @property {number} asymmetric.signer.padding.PSS.saltLengthBytes.SL_64 - 64
- * @property {object} asymmetric.signer.padding.PSS.maskGenerator - Mask
- * generation function.
- * @property {object} asymmetric.signer.padding.PSS.maskGenerator.MGF1 - MGF1
- * mask generation algorithm.
- * @property {string} asymmetric.signer.padding.PSS.maskGenerator.MGF1.name -
- * 'MGF1'
- * @property {object}
- * asymmetric.signer.padding.PSS.maskGenerator.MGF1.hashAlgorithm -
- * Hash algorithm.
- * @property {string}
- * asymmetric.signer.padding.PSS.maskGenerator.MGF1.hashAlgorithm.SHA256
- * -'SHA256'
- * @property {string}
- * asymmetric.signer.padding.PSS.maskGenerator.MGF1.hashAlgorithm.SHA256_224
- * - 'SHA512/224'
- * @property {object} asymmetric.signer.publicExponent - Public exponent.
- * @property {number} asymmetric.signer.publicExponent.F4 - 65537
- *
- * @property {object} asymmetric.cipher - Policy for asymmetrically encrypting
- * and decrypting data.
- * @property {object} asymmetric.cipher.algorithm - Cipher algorithm.
- * @property {object} asymmetric.cipher.algorithm.RSA_OAEP - RSA-OAEP algorithm.
- * @property {string} asymmetric.cipher.algorithm.RSA_OAEP.name. - 'RSA-OAEP'.
- * @property {object} asymmetric.cipher.algorithm.RSA_OAEP.hashAlgorithm - Hash
- * algorithm.
- * @property {string} asymmetric.cipher.algorithm.RSA_OAEP.hashAlgorithm.SHA256 -
- * 'SHA-256'
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_OAEP.hashAlgorithm.SHA512_224 -
- * 'SHA512/224'
- * @property {object} asymmetric.cipher.algorithm.RSA_OAEP.maskGenerator - Mask
- * generation function.
- * @property {object} asymmetric.cipher.algorithm.RSA_OAEP.maskGenerator.MGF1 -
- * MGF1 mask generation function.
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_OAEP.maskGenerator.MGF1.name -
- * 'MGF1'
- * @property {object}
- * asymmetric.cipher.algorithm.RSA_OAEP.maskGenerator.MGF1.hashAlgorithm
- * - Hash algorithm.
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_OAEP.maskGenerator.MGF1.hashAlgorithm.SHA256
- * - 'SHA256'
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_OAEP.maskGenerator.MGF1.hashAlgorithm.SHA512_224
- * - 'SHA512/224'
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM - RSA-KEM algorithm.
- * @property {string} asymmetric.cipher.algorithm.RSA_KEM.name - 'RSA-KEM'
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.hashAlgorithm - Hash
- * algorithm.
- * @property {string} asymmetric.cipher.algorithm.RSA_KEM.hashAlgorithm.SHA256 -
- * 'SHA256'
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_KEM.hashAlgorithm.SHA512_224 -
- * 'SHA512/224'
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.secretKeyLengthBytes -
- * Secret key length, in bytes.
- * @property {number}
- * asymmetric.cipher.algorithm.RSA_KEM.secretKeyLengthBytes.KL_16 - 16
- * @property {number}
- * asymmetric.cipher.algorithm.RSA_KEM.secretKeyLengthBytes.KL_24 - 24
- * @property {number}
- * asymmetric.cipher.algorithm.RSA_KEM.secretKeyLengthBytes.KL_32 - 32
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes -
- * Initialization vector length, in bytes.
- * @property {number} asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes.IVL_12 -
- * 12
- * @property {number} asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes.IVL_16 -
- * 16
- * @property {number} asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes.IVL_32 -
- * 32
- * @property {number} asymmetric.cipher.algorithm.RSA_KEM.ivLengthBytes.IVL_64 -
- * 64
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes -Tag
- * length, in bytes.
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes.TL_12 -
- * 12
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes.TL_16 -
- * 16
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes.TL_32 -
- * 32
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.tagLengthBytes.TL_64 -
- * 64
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.keyDeriver - Key
- * deriver
- * @property {object} asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.name - Key
- * deriver name.
- * @property {string} asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.name.KDF1 -
- * 'KDF1'
- * @property {string} asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.name.KDF2 -
- * 'KDF2'
- * @property {string} asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.name.MGF1 -
- * 'MGF1'
- * @property {object}
- * asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.hashAlgorithm - Hash
- * function.
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.hashAlgorithm.SHA256
- * - 'SHA256'
- * @property {string}
- * asymmetric.cipher.algorithm.RSA_KEM.keyDeriver.hashAlgorithm.SHA512_224
- * - 'SHA512/224'
- *
- * @property {object} proofs - Policy for generating zero-knowledge proofs.
- * @property {object} proofs.messageDigest - Policy for generating message
- * digests.
- *
- * @property {object} digitalEnvelope - Policy for generating digital envelopes.
- * @property {object} digitalEnvelope.symmetric - Policy for symmetric
- * cryptography operations.
- * @property {object} digitalEnvelope.asymmetric.cipher - Policy for asymmetric
- * cipher operations.
- */
- module.exports = objs.freeze(objs.leanCopy({
- primitives: {
- messageDigest: {
- algorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'},
- },
- keyDerivation: {
- pbkdf: {
- keyLengthBytes: {KL_16: 16, KL_32: 32},
- minSaltLengthBytes: {SL_20: 20, SL_32: 32},
- hashAlgorithm: {SHA256: 'SHA256'},
- numIterations: {
- I_1: 1,
- I_8000: 8000,
- I_16000: 16000,
- I_32000: 32000,
- I_64000: 64000
- }
- }
- }
- },
- symmetric: {
- secretKey: {
- encryption: {lengthBytes: {KL_16: 16, KL_32: 32}},
- mac: {lengthBytes: {KL_32: 32, KL_64: 64}},
- },
- cipher: {
- algorithm: {
- AES_GCM: {
- name: 'AES-GCM',
- keyLengthBytes: {KL_16: 16, KL_32: 32},
- tagLengthBytes: {TL_16: 16, TL_32: 32}
- }
- },
- ivLengthBytes: {IVL_12: 12, IVL_16: 16, IVL_32: 32, IVL_64: 64},
- },
- mac: {hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'}}
- },
- asymmetric: {
- keyPair: {
- encryption: {
- algorithm: {RSA: 'RSA'},
- keyLengthBits: {KL_2048: 2048, KL_3072: 3072, KL_4096: 4096},
- publicExponent: {F4: 65537}
- },
- },
- signer: {
- algorithm: {RSA: 'RSA'},
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'},
- padding: {
- PSS: {
- name: 'PSS',
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'},
- saltLengthBytes: {SL_32: 32, SL_64: 64},
- maskGenerator: {
- MGF1: {
- name: 'MGF1',
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'}
- }
- }
- }
- },
- publicExponent: {F4: 65537},
- },
- cipher: {
- algorithm: {
- RSA_OAEP: {
- name: 'RSA-OAEP',
- hashAlgorithm: {SHA256: 'SHA256'},
- maskGenerator: {MGF1: {name: 'MGF1', hashAlgorithm: {SHA1: 'SHA1'}}}
- },
- RSA_KEM: {
- name: 'RSA-KEM',
- secretKeyLengthBytes: {KL_16: 16, KL_24: 24, KL_32: 32},
- ivLengthBytes: {IVL_12: 12, IVL_16: 16, IVL_32: 32, IVL_64: 64},
- tagLengthBytes: {TL_12: 12, TL_16: 16, TL_32: 32, TL_64: 64},
- keyDeriver: {
- name: {KDF1: 'KDF1', KDF2: 'KDF2', MGF1: 'MGF1'},
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'}
- },
- symmetricCipher: {AES_GCM: 'AES-GCM'}
- }
- },
- }
- },
- proofs: {
- messageDigest: {
- algorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'},
- }
- },
- digitalEnvelope: {
- symmetric: {
- secretKey: {
- encryption: {lengthBytes: {KL_16: 16, KL_32: 32}},
- mac: {lengthBytes: {KL_32: 32, KL_64: 64}},
- },
- cipher: {
- algorithm: {
- AES_GCM: {
- name: 'AES-GCM',
- keyLengthBytes: {KL_16: 16, KL_32: 32},
- tagLengthBytes: {TL_16: 16, TL_32: 32}
- }
- },
- ivLengthBytes: {IVL_12: 12, IVL_16: 16, IVL_32: 32, IVL_64: 64},
- },
- mac: {hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'}}
- },
- asymmetric: {
- cipher: {
- algorithm: {
- RSA_OAEP: {
- name: 'RSA-OAEP',
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'},
- maskGenerator: {
- MGF1: {
- name: 'MGF1',
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'}
- }
- }
- },
- RSA_KEM: {
- name: 'RSA-KEM',
- secretKeyLengthBytes: {KL_16: 16, KL_24: 24, KL_32: 32},
- ivLengthBytes: {IVL_12: 12, IVL_16: 16, IVL_32: 32, IVL_64: 64},
- tagLengthBytes: {TL_12: 12, TL_16: 16, TL_32: 32, TL_64: 64},
- keyDeriver: {
- name: {KDF1: 'KDF1', KDF2: 'KDF2', MGF1: 'MGF1'},
- hashAlgorithm: {SHA256: 'SHA256', SHA512_224: 'SHA512/224'}
- },
- symmetricCipher: {AES_GCM: 'AES-GCM'}
- }
- },
- }
- }
- }
- }));
|