enclose-io/compiler

View on GitHub
current/benchmark/crypto/aes-gcm-throughput.js

Summary

Maintainability
D
1 day
Test Coverage

Function AEAD_Bench has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

function AEAD_Bench(cipher, message, associate_data, key, iv, n, len) {
Severity: Major
Found in current/benchmark/crypto/aes-gcm-throughput.js - About 50 mins to fix

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    function AEAD_Bench(cipher, message, associate_data, key, iv, n, len) {
      const written = n * len;
      const bits = written * 8;
      const mbits = bits / (1024 * 1024);
    
    
    Severity: Major
    Found in current/benchmark/crypto/aes-gcm-throughput.js and 1 other location - About 1 day to fix
    lts/benchmark/crypto/aes-gcm-throughput.js on lines 20..39

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 213.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    function main({ n, len, cipher }) {
      const message = Buffer.alloc(len, 'b');
      const key = crypto.randomBytes(keylen[cipher]);
      const iv = crypto.randomBytes(12);
      const associate_data = Buffer.alloc(16, 'z');
    Severity: Major
    Found in current/benchmark/crypto/aes-gcm-throughput.js and 1 other location - About 3 hrs to fix
    lts/benchmark/crypto/aes-gcm-throughput.js on lines 11..18

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 114.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    const bench = common.createBenchmark(main, {
      n: [500],
      cipher: ['aes-128-gcm', 'aes-192-gcm', 'aes-256-gcm'],
      len: [1024, 4 * 1024, 16 * 1024, 64 * 1024, 256 * 1024, 1024 * 1024]
    });
    Severity: Major
    Found in current/benchmark/crypto/aes-gcm-throughput.js and 1 other location - About 1 hr to fix
    lts/benchmark/crypto/aes-gcm-throughput.js on lines 5..9

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 65.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    There are no issues that match your filters.

    Category
    Status