- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for extractInspectV2 (0.75 sec)
-
docs/debugging/inspect/decrypt-v2.go
import ( "errors" "fmt" "io" "os" "path/filepath" "strings" "unicode/utf8" "github.com/minio/madmin-go/v3/estream" ) type keepFileErr struct { error } func extractInspectV2(pks [][]byte, r io.Reader, extractDir string) error { sr, err := estream.NewReader(r) if err != nil { return err } for _, pk := range pks { privKey, err := bytesToPrivateKey(pk) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 17 17:09:42 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/debugging/inspect/main.go
err = extractInspectV1(*keyHex, input, output, msg) output.Close() case len(privateKeys) != 0: outputFileName := strings.TrimSuffix(outputFileName, ".zip") err = extractInspectV2(privateKeys, input, outputFileName) } if err != nil { var keep keepFileErr if !errors.As(err, &keep) { os.Remove(outputFileName) } fatalErr(err) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 17 17:09:42 UTC 2025 - 5.7K bytes - Viewed (0)