func tls1PRF1(result, secret, label, seed []byte, md C.GO_EVP_MD_PTR) error { checkMajorVersion(1) ctx := C.go_openssl_EVP_PKEY_CTX_new_id(C.GO_EVP_PKEY_TLS1_PRF, nil) if ctx == nil { return newOpenSSLError("EVP_PKEY_CTX_new_id") @@ -50,48 +72,29 @@ func TLS1P...
Support is included for PBKDF2, scrypt, TLS1 PRF and HKDF. PBKDF1 and PKCS12 KDF are not implemented. The low level KDF functions and PKEY KDF support have been changed to wrap the new API. Other parts of OpenSSL have not yet been updated to call the new API. Documentation to follow...
31 - &tls1_prf_kdf_meth, 32 - &hkdf_kdf_meth, 33 - &sshkdf_kdf_meth, 34 - &ss_kdf_meth 35 - }; 36 - 37 - DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_KDF_METHOD *, const EVP_KDF_METHOD *, 38 - kmeth); 39 - 40 - static int kmeth_cmp(const EVP_KDF_METHOD ...
Intel QuickAssist Technology( QAT) OpenSSL Engine (an OpenSSL Plug-In Engine) which provides cryptographic acceleration for both hardware and optimized software using Intel QuickAssist Technology enabled Intel platforms. https://developer.intel.com/quick
The EVP_KDF API was added in OpenSSL 3 to properly support KDF algorithms. It is recommended that KDF operations migrates from the EVP_PKEY API to this new API. The built-in providers still support the EVP_PKEY for back compat, but third...
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...