Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for MAC (0.03 sec)

  1. src/crypto/ecdsa/ecdsa.go

    	md.Write(entropy)        // the entropy,
    	md.Write(hash)           // and the input hash;
    	key := md.Sum(nil)[:32]  // and compute ChopMD-256(SHA-512),
    	// which is an indifferentiable MAC.
    
    	// Create an AES-CTR instance to use as a CSPRNG.
    	block, err := aes.NewCipher(key)
    	if err != nil {
    		return nil, err
    	}
    
    	// Create a CSPRNG that xors a stream of zeros with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. docs/vi/docs/index.md

    * <a href="https://jinja.palletsprojects.com" target="_blank"><code>jinja2</code></a> - Bắt buộc nếu bạn muốn sử dụng cấu hình template engine mặc định.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    }
    
    // readDir reads a dir on disk, returning an error that is errNotDir if the dir is not a directory.
    // Unfortunately, the error returned by os.ReadDir if dir is not a directory
    // can vary depending on the OS (Linux, Mac, Windows return ENOTDIR; BSD returns EINVAL).
    func readDir(dir string) ([]fs.FileInfo, error) {
    	entries, err := os.ReadDir(dir)
    	if err != nil {
    		if os.IsNotExist(err) {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/net/http/request_test.go

    	benchmarkReadRequest(b, `GET / HTTP/1.1
    Host: localhost:8080
    Connection: keep-alive
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    typedef union {
    	long align;
    } xxpthread_mutex_t;
    struct ibv_async_event {
    	union {
    		int x;
    	} element;
    };
    struct ibv_context {
    	xxpthread_mutex_t mutex;
    };
    
    // issue 1635
    // Mac OS X's gcc will generate scattered relocation 2/1 for
    // this function on Darwin/386, and 8l couldn't handle it.
    // this example is in issue 1635
    void scatter() {
    	void *p = scatter;
    	printf("scatter = %p\n", p);
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top