Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _goboringcrypto_EVP_PKEY_CTX_free (0.3 sec)

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

    	defer func() {
    		if err != nil {
    			if pkey != nil {
    				C._goboringcrypto_EVP_PKEY_free(pkey)
    				pkey = nil
    			}
    			if ctx != nil {
    				C._goboringcrypto_EVP_PKEY_CTX_free(ctx)
    				ctx = nil
    			}
    		}
    	}()
    
    	pkey = C._goboringcrypto_EVP_PKEY_new()
    	if pkey == nil {
    		return pkey, ctx, fail("EVP_PKEY_new")
    	}
    	if withKey(func(key *C.GO_RSA) C.int {
    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_EVP_PKEY_CTX { char data[1]; } GO_EVP_PKEY_CTX;
    
    GO_EVP_PKEY_CTX* _goboringcrypto_EVP_PKEY_CTX_new(GO_EVP_PKEY*, GO_ENGINE*);
    void _goboringcrypto_EVP_PKEY_CTX_free(GO_EVP_PKEY_CTX*);
    int _goboringcrypto_EVP_PKEY_CTX_set0_rsa_oaep_label(GO_EVP_PKEY_CTX*, uint8_t*, size_t);
    int _goboringcrypto_EVP_PKEY_CTX_set_rsa_oaep_md(GO_EVP_PKEY_CTX*, const GO_EVP_MD*);
    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