Skip to content

Commit

Permalink
Replace default imports with * imports to fix benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
Matija Petrunic committed May 31, 2021
1 parent 7fb4662 commit 1e6dc90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handshakes/abstract-handshake.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Buffer } from 'buffer'
import x25519 from '@stablelib/x25519'
import SHA256 from '@stablelib/sha256'
import * as x25519 from '@stablelib/x25519'
import * as SHA256 from '@stablelib/sha256'
import { ChaCha20Poly1305 } from '@stablelib/chacha20poly1305'

import { bytes, bytes32, uint32 } from '../@types/basic'
Expand Down

0 comments on commit 1e6dc90

Please sign in to comment.