Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _goboringcrypto_SHA512_Final (0.28 sec)

  1. src/crypto/internal/boring/sha.go

    }
    
    int
    _goboringcrypto_gosha512(void *p, size_t n, void *out)
    {
    	GO_SHA512_CTX ctx;
    	_goboringcrypto_SHA512_Init(&ctx);
    	return _goboringcrypto_SHA512_Update(&ctx, p, n) &&
    		_goboringcrypto_SHA512_Final(out, &ctx);
    }
    
    */
    import "C"
    import (
    	"errors"
    	"hash"
    	"unsafe"
    )
    
    // NOTE: The cgo calls in this file are arranged to avoid marking the parameters as escaping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/goboringcrypto.h

    int _goboringcrypto_SHA384_Final(uint8_t*, GO_SHA512_CTX*);
    int _goboringcrypto_SHA512_Init(GO_SHA512_CTX*);
    int _goboringcrypto_SHA512_Update(GO_SHA512_CTX*, const void*, size_t);
    int _goboringcrypto_SHA512_Final(uint8_t*, GO_SHA512_CTX*);
    
    // #include <openssl/digest.h>
    /*unchecked (opaque)*/ typedef struct GO_EVP_MD { char data[1]; } GO_EVP_MD;
    const GO_EVP_MD* _goboringcrypto_EVP_md4(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top