Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.219.65.132
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
node_modules /
tweetnacl /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
38
B
-rw-r--r--
2021-03-10 14:36
AUTHORS.md
875
B
-rw-r--r--
2021-03-10 14:36
CHANGELOG.md
5.77
KB
-rw-r--r--
2021-03-10 14:36
LICENSE
1.18
KB
-rw-r--r--
2021-03-10 14:36
PULL_REQUEST_TEMPLATE.md
1.02
KB
-rw-r--r--
2021-03-10 14:36
README.md
12.86
KB
-rw-r--r--
2021-03-10 14:36
nacl-fast.js
60.8
KB
-rw-r--r--
2021-03-10 14:36
nacl-fast.min.js
31.86
KB
-rw-r--r--
2021-03-10 14:36
nacl.d.ts
3
KB
-rw-r--r--
2021-03-10 14:36
nacl.js
32.18
KB
-rw-r--r--
2021-03-10 14:36
nacl.min.js
18.64
KB
-rw-r--r--
2021-03-10 14:36
package.json
2.54
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
// Type definitions for TweetNaCl.js export as namespace nacl; declare var nacl: nacl; export = nacl; declare namespace nacl { export interface BoxKeyPair { publicKey: Uint8Array; secretKey: Uint8Array; } export interface SignKeyPair { publicKey: Uint8Array; secretKey: Uint8Array; } export interface secretbox { (msg: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array; open(box: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array | false; readonly keyLength: number; readonly nonceLength: number; readonly overheadLength: number; } export interface scalarMult { (n: Uint8Array, p: Uint8Array): Uint8Array; base(n: Uint8Array): Uint8Array; readonly scalarLength: number; readonly groupElementLength: number; } namespace box { export interface open { (msg: Uint8Array, nonce: Uint8Array, publicKey: Uint8Array, secretKey: Uint8Array): Uint8Array | false; after(box: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array | false; } export interface keyPair { (): BoxKeyPair; fromSecretKey(secretKey: Uint8Array): BoxKeyPair; } } export interface box { (msg: Uint8Array, nonce: Uint8Array, publicKey: Uint8Array, secretKey: Uint8Array): Uint8Array; before(publicKey: Uint8Array, secretKey: Uint8Array): Uint8Array; after(msg: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array; open: box.open; keyPair: box.keyPair; readonly publicKeyLength: number; readonly secretKeyLength: number; readonly sharedKeyLength: number; readonly nonceLength: number; readonly overheadLength: number; } namespace sign { export interface detached { (msg: Uint8Array, secretKey: Uint8Array): Uint8Array; verify(msg: Uint8Array, sig: Uint8Array, publicKey: Uint8Array): boolean; } export interface keyPair { (): SignKeyPair; fromSecretKey(secretKey: Uint8Array): SignKeyPair; fromSeed(secretKey: Uint8Array): SignKeyPair; } } export interface sign { (msg: Uint8Array, secretKey: Uint8Array): Uint8Array; open(signedMsg: Uint8Array, publicKey: Uint8Array): Uint8Array | null; detached: sign.detached; keyPair: sign.keyPair; readonly publicKeyLength: number; readonly secretKeyLength: number; readonly seedLength: number; readonly signatureLength: number; } export interface hash { (msg: Uint8Array): Uint8Array; readonly hashLength: number; } } declare interface nacl { randomBytes(n: number): Uint8Array; secretbox: nacl.secretbox; scalarMult: nacl.scalarMult; box: nacl.box; sign: nacl.sign; hash: nacl.hash; verify(x: Uint8Array, y: Uint8Array): boolean; setPRNG(fn: (x: Uint8Array, n: number) => void): void; }