Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DecodedLen (0.29 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall9(procCryptDecodeObject.Addr(), 7, uintptr(encodingType), uintptr(unsafe.Pointer(structType)), uintptr(unsafe.Pointer(encodedBytes)), uintptr(lenEncodedBytes), uintptr(flags), uintptr(decoded), uintptr(unsafe.Pointer(decodedLen)), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    				parsedCRL.TBSCertList.RevokedCertificates, expectedCerts)
    		}
    	}
    }
    
    func fromBase64(in string) []byte {
    	out := make([]byte, base64.StdEncoding.DecodedLen(len(in)))
    	n, err := base64.StdEncoding.Decode(out, []byte(in))
    	if err != nil {
    		panic("failed to base64 decode")
    	}
    	return out[:n]
    }
    
    func TestParseDERCRL(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top