Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
crypto /
elliptic /
[ HOME SHELL ]
Name
Size
Permission
Action
elliptic.go
12.21
KB
-rw-r--r--
elliptic_test.go
18.51
KB
-rw-r--r--
fuzz_test.go
1.2
KB
-rw-r--r--
p224.go
20.38
KB
-rw-r--r--
p224_test.go
993
B
-rw-r--r--
p256.go
39.95
KB
-rw-r--r--
p256_asm.go
16.09
KB
-rw-r--r--
p256_asm_amd64.s
39.56
KB
-rw-r--r--
p256_asm_arm64.s
29.44
KB
-rw-r--r--
p256_asm_ppc64le.s
62.58
KB
-rw-r--r--
p256_asm_s390x.s
63.43
KB
-rw-r--r--
p256_generic.go
330
B
-rw-r--r--
p256_ppc64le.go
13.02
KB
-rw-r--r--
p256_s390x.go
14.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fuzz_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build amd64 arm64 ppc64le package elliptic import ( "crypto/rand" "testing" "time" ) func TestFuzz(t *testing.T) { p256 := P256() p256Generic := p256.Params() var scalar1 [32]byte var scalar2 [32]byte var timeout *time.Timer if testing.Short() { timeout = time.NewTimer(10 * time.Millisecond) } else { timeout = time.NewTimer(2 * time.Second) } for { select { case <-timeout.C: return default: } rand.Read(scalar1[:]) rand.Read(scalar2[:]) x, y := p256.ScalarBaseMult(scalar1[:]) x2, y2 := p256Generic.ScalarBaseMult(scalar1[:]) xx, yy := p256.ScalarMult(x, y, scalar2[:]) xx2, yy2 := p256Generic.ScalarMult(x2, y2, scalar2[:]) if x.Cmp(x2) != 0 || y.Cmp(y2) != 0 { t.Fatalf("ScalarBaseMult does not match reference result with scalar: %x, please report this error to security@golang.org", scalar1) } if xx.Cmp(xx2) != 0 || yy.Cmp(yy2) != 0 { t.Fatalf("ScalarMult does not match reference result with scalars: %x and %x, please report this error to security@golang.org", scalar1, scalar2) } } }
Close