anya-core 1.2.0

Enterprise-grade Bitcoin Infrastructure Platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
describe('Post-Install Security', () => {
  test('No Insecure Algorithms', () => {
    const algorithms = getCryptoAlgorithms();
    expect(algorithms).not.toContain('DES');
    expect(algorithms).not.toContain('RC4');
  });

  test('Constant-Time Operations', () => {
    const comparisonResults = testConstantTime();
    expect(comparisonResults.timingVariance).toBeLessThan(10);
  });
});