Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 422 for Hex (0.09 sec)

  1. src/runtime/defs_windows_386.go

    }
    
    func dumpregs(r *context) {
    	print("eax     ", hex(r.eax), "\n")
    	print("ebx     ", hex(r.ebx), "\n")
    	print("ecx     ", hex(r.ecx), "\n")
    	print("edx     ", hex(r.edx), "\n")
    	print("edi     ", hex(r.edi), "\n")
    	print("esi     ", hex(r.esi), "\n")
    	print("ebp     ", hex(r.ebp), "\n")
    	print("esp     ", hex(r.esp), "\n")
    	print("eip     ", hex(r.eip), "\n")
    	print("eflags  ", hex(r.eflags), "\n")
    	print("cs      ", hex(r.segcs), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/plugin.go

    			println("\tpmd.text-etext=", hex(pmd.text), "-", hex(pmd.etext))
    			println("\tpmd.bss-ebss=", hex(pmd.bss), "-", hex(pmd.ebss))
    			println("\tpmd.data-edata=", hex(pmd.data), "-", hex(pmd.edata))
    			println("\tpmd.types-etypes=", hex(pmd.types), "-", hex(pmd.etypes))
    			println("\tmd.text-etext=", hex(md.text), "-", hex(md.etext))
    			println("\tmd.bss-ebss=", hex(md.bss), "-", hex(md.ebss))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pubkeypin/pubkeypin.go

    	hashLength := hex.DecodedLen(len(hash))
    	if hashLength != sha256.Size {
    		return errors.Errorf("expected a %d byte SHA-256 hash, found %d bytes", sha256.Size, hashLength)
    	}
    
    	// validate that the hash is valid hex
    	_, err := hex.DecodeString(hash)
    	if err != nil {
    		return errors.Wrap(err, "could not decode SHA-256 from hex")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. src/runtime/signal_linux_s390x.go

    func dumpregs(c *sigctxt) {
    	print("r0   ", hex(c.r0()), "\t")
    	print("r1   ", hex(c.r1()), "\n")
    	print("r2   ", hex(c.r2()), "\t")
    	print("r3   ", hex(c.r3()), "\n")
    	print("r4   ", hex(c.r4()), "\t")
    	print("r5   ", hex(c.r5()), "\n")
    	print("r6   ", hex(c.r6()), "\t")
    	print("r7   ", hex(c.r7()), "\n")
    	print("r8   ", hex(c.r8()), "\t")
    	print("r9   ", hex(c.r9()), "\n")
    	print("r10  ", hex(c.r10()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 20:42:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PACTest.java

            Mac m = Mac.getInstance("HmacMD5");
            m.init(new SecretKeySpec(Hex.decode(key), "HMAC"));
            byte[] mac = m.doFinal(bytes);
            checkBytes(Hex.decode(expect), mac);
        }
    
    
        @Test
        public void testRC4Checksum1 () throws PACDecodingException, GeneralSecurityException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. src/crypto/cipher/cfb_test.go

    func TestCFBVectors(t *testing.T) {
    	for i, test := range cfbTests {
    		key, err := hex.DecodeString(test.key)
    		if err != nil {
    			t.Fatal(err)
    		}
    		iv, err := hex.DecodeString(test.iv)
    		if err != nil {
    			t.Fatal(err)
    		}
    		plaintext, err := hex.DecodeString(test.plaintext)
    		if err != nil {
    			t.Fatal(err)
    		}
    		expected, err := hex.DecodeString(test.ciphertext)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:18:36 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  7. src/runtime/stack.go

    			pcoff = gp.sched.pc - f.entry()
    		}
    		print("runtime: newstack at ", pcname, "+", hex(pcoff),
    			" sp=", hex(gp.sched.sp), " stack=[", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n",
    			"\tmorebuf={pc:", hex(morebuf.pc), " sp:", hex(morebuf.sp), " lr:", hex(morebuf.lr), "}\n",
    			"\tsched={pc:", hex(gp.sched.pc), " sp:", hex(gp.sched.sp), " lr:", hex(gp.sched.lr), " ctxt:", gp.sched.ctxt, "}\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  8. cmd/hasher.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"crypto/md5"
    	"encoding/hex"
    
    	"github.com/minio/minio/internal/hash/sha256"
    )
    
    // getSHA256Hash returns SHA-256 hash in hex encoding of given data.
    func getSHA256Hash(data []byte) string {
    	return hex.EncodeToString(getSHA256Sum(data))
    }
    
    // getSHA256Hash returns SHA-256 sum of given data.
    func getSHA256Sum(data []byte) []byte {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 13:00:19 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/type.go

    	res, found := reflectOffs.m[int32(off)]
    	reflectOffsUnlock()
    	if !found {
    		println("runtime: nameOff", hex(off), "base", hex(base), "not in ranges:")
    		for next := &firstmoduledata; next != nil; next = next.next {
    			println("\ttypes", hex(next.types), "etypes", hex(next.etypes))
    		}
    		throw("runtime: name offset base pointer out of range")
    	}
    	return name{Bytes: (*byte)(res)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/crypto/rsa/boring_test.go

    				}
    			}()
    		}
    		wg.Wait()
    	}
    }
    
    func bigFromHex(hex string) *big.Int {
    	n, ok := new(big.Int).SetString(hex, 16)
    	if !ok {
    		panic("bad hex: " + hex)
    	}
    	return n
    }
    
    func fromHex(hexStr string) []byte {
    	s, err := hex.DecodeString(hexStr)
    	if err != nil {
    		panic(err)
    	}
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top