Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _goboringcrypto_EC_KEY_get0_public_key (0.39 sec)

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

    	if C._goboringcrypto_EC_KEY_generate_key_fips(key) == 0 {
    		return nil, nil, nil, fail("EC_KEY_generate_key_fips")
    	}
    	group := C._goboringcrypto_EC_KEY_get0_group(key)
    	pt := C._goboringcrypto_EC_KEY_get0_public_key(key)
    	bd := C._goboringcrypto_EC_KEY_get0_private_key(key)
    	if pt == nil || bd == nil {
    		return nil, nil, nil, fail("EC_KEY_get0_private_key")
    	}
    	bx := C._goboringcrypto_BN_new()
    	if bx == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/goboringcrypto.h

    int _goboringcrypto_EC_KEY_is_opaque(const GO_EC_KEY*);
    const GO_BIGNUM* _goboringcrypto_EC_KEY_get0_private_key(const GO_EC_KEY*);
    const GO_EC_POINT* _goboringcrypto_EC_KEY_get0_public_key(const GO_EC_KEY*);
    // TODO: EC_KEY_check_fips?
    
    // #include <openssl/ecdh.h>
    int _goboringcrypto_ECDH_compute_key_fips(uint8_t*, size_t, const GO_EC_POINT*, const GO_EC_KEY*);
    
    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