Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _goboringcrypto_RSA_free (0.17 sec)

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

    		return nil, nil, nil, nil, nil, nil, nil, nil, e
    	}
    
    	key := C._goboringcrypto_RSA_new()
    	if key == nil {
    		return bad(fail("RSA_new"))
    	}
    	defer C._goboringcrypto_RSA_free(key)
    
    	if C._goboringcrypto_RSA_generate_key_fips(key, C.int(bits), nil) == 0 {
    		return bad(fail("RSA_generate_key_fips"))
    	}
    
    	var n, e, d, p, q, dp, dq, qinv *C.GO_BIGNUM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/goboringcrypto.h

    /*unchecked (opaque)*/ typedef struct GO_BN_GENCB { char data[1]; } GO_BN_GENCB;
    GO_RSA* _goboringcrypto_RSA_new(void);
    void _goboringcrypto_RSA_free(GO_RSA*);
    void _goboringcrypto_RSA_get0_key(const GO_RSA*, const GO_BIGNUM **n, const GO_BIGNUM **e, const GO_BIGNUM **d);
    void _goboringcrypto_RSA_get0_factors(const GO_RSA*, const GO_BIGNUM **p, const GO_BIGNUM **q);
    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