| 17 | } |
| 18 | |
| 19 | export interface secretbox { |
| 20 | (msg: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array; |
| 21 | open(box: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array | null; |
| 22 | readonly keyLength: number; |
| 23 | readonly nonceLength: number; |
| 24 | readonly overheadLength: number; |
| 25 | } |
| 26 | |
| 27 | export interface scalarMult { |
| 28 | (n: Uint8Array, p: Uint8Array): Uint8Array; |
nothing calls this directly
no outgoing calls
no test coverage detected