Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _goboringcrypto_EC_KEY_get0_private_key (0.39 sec)

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

    	defer runtime.KeepAlive(k)
    
    	group := C._goboringcrypto_EC_KEY_get0_group(k.key)
    	if group == nil {
    		return nil, fail("EC_KEY_get0_group")
    	}
    	kbig := C._goboringcrypto_EC_KEY_get0_private_key(k.key)
    	if kbig == nil {
    		return nil, fail("EC_KEY_get0_private_key")
    	}
    	pt := C._goboringcrypto_EC_POINT_new(group)
    	if pt == nil {
    		return nil, fail("EC_POINT_new")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/ecdsa.go

    		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 {
    		return nil, nil, nil, fail("BN_new")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/goboringcrypto.h

    int _goboringcrypto_EC_KEY_set_public_key(GO_EC_KEY*, const GO_EC_POINT*);
    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>
    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