Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _goboringcrypto_EC_KEY_set_public_key (0.3 sec)

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

    		return nil, fail("EC_POINT_new")
    	}
    	bx := bigToBN(X)
    	by := bigToBN(Y)
    	ok := bx != nil && by != nil && C._goboringcrypto_EC_POINT_set_affine_coordinates_GFp(group, pt, bx, by, nil) != 0 &&
    		C._goboringcrypto_EC_KEY_set_public_key(key, pt) != 0
    	if bx != nil {
    		C._goboringcrypto_BN_free(bx)
    	}
    	if by != nil {
    		C._goboringcrypto_BN_free(by)
    	}
    	C._goboringcrypto_EC_POINT_free(pt)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top