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 /
md5 /
[ HOME SHELL ]
Name
Size
Permission
Action
example_test.go
825
B
-rw-r--r--
gen.go
4.68
KB
-rw-r--r--
md5.go
4.5
KB
-rw-r--r--
md5_test.go
16.67
KB
-rw-r--r--
md5block.go
5.28
KB
-rw-r--r--
md5block_386.s
4.45
KB
-rw-r--r--
md5block_amd64.s
4.38
KB
-rw-r--r--
md5block_arm.s
8.78
KB
-rw-r--r--
md5block_arm64.s
4.11
KB
-rw-r--r--
md5block_decl.go
295
B
-rw-r--r--
md5block_generic.go
279
B
-rw-r--r--
md5block_ppc64x.s
5.03
KB
-rw-r--r--
md5block_s390x.s
4.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example_test.go
// Copyright 2013 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. package md5_test import ( "crypto/md5" "fmt" "io" "log" "os" ) func ExampleNew() { h := md5.New() io.WriteString(h, "The fog is getting thicker!") io.WriteString(h, "And Leon's getting laaarger!") fmt.Printf("%x", h.Sum(nil)) // Output: e2c569be17396eca2a2e3c11578123ed } func ExampleSum() { data := []byte("These pretzels are making me thirsty.") fmt.Printf("%x", md5.Sum(data)) // Output: b0804ec967f48520697662a204f5fe72 } func ExampleNew_file() { f, err := os.Open("file.txt") if err != nil { log.Fatal(err) } defer f.Close() h := md5.New() if _, err := io.Copy(h, f); err != nil { log.Fatal(err) } fmt.Printf("%x", h.Sum(nil)) }
Close