cryptoauth-openssl-engine icon indicating copy to clipboard operation
cryptoauth-openssl-engine copied to clipboard

DEPRECATED: Use https://github.com/MicrochipTech/cryptoauthlib/wiki/PKCS11-Linux-Setup

Results 23 cryptoauth-openssl-engine issues
Sort by recently updated
recently updated
newest added

Please let me know if this comment is wrong for error code ATCA_RX_NO_RESPONSE. Actual: Not an error while the Command layer is polling for a command response. Expected: Got an...

I'am using the crypto chip ATECC508 connected to a RPI3 compute module using I2C interface. Running the test tool I was able to PASS all of them, but if I...

Hello, The ATECC508A is being used on my platform. And I try to porting this project to buildroot. But it can't compile successfully. Is there a buildroot example for reference?...

on Ubuntu 18.04, openssl version is 1.1.0g and the source code won't compile. Furthermore, we are using node.js. tls.certEngine is not supported until node.js v10. However, node.js v10 uses openSSL...

It's necessary to have signer cert public key when we are going to reading and verifying client cert.

use correct data type for key_str in get_key To fix, change the below line in `lib/openssl/eccx08_cmd_defns.c` ```ATCA_STATUS status = ATCA_GEN_FAIL; char* key_str[32]; EVP_PKEY* pkey; DEBUG_ENGINE("Entered\n"); ``` to ```ATCA_STATUS status =...

When I compile this project for target **ATCA_HAL_KIT_HID** (Kit with USB HID) and it failed to link the Linux udev static library. Fix: cryptoauthlib/Makefile ``` $(OUTDIR)/libateccssl.so: $(LIBATECCSSL_OBJECTS) $(LIBCRYPTOAUTH_OBJECTS) | $(OUTDIR)...

It supposed to be `DEBUG_ENGINE()` instead of `eccx08_debug()`. Fix: File: cryptoauthlib/lib/openssl/eccx08_rand.c ``` static int RAND_eccx08_rand_bytes(unsigned char *buf, int num) { ................ if (total_num == 0) { **DEBUG_ENGINE**("RAND_eccx08_rand_bytes() - hw\n"); ```

I noticed the segmentation fault \when I tried to execute TLS authentication example. This error occurs in one of the debug function where it prints the `eckey` and so it's...

``` /home/vgottardi/cryptoauth-openssl-engine/cryptoauthlib/.build/libateccssl.so: undefined reference to `g_cert_def_1_signer' /home/vgottardi/cryptoauth-openssl-engine/cryptoauthlib/.build/libateccssl.so: undefined reference to `g_csr_def_3_device' /home/vgottardi/cryptoauth-openssl-engine/cryptoauthlib/.build/libateccssl.so: undefined reference to `g_signer_1_ca_public_key' /home/vgottardi/cryptoauth-openssl-engine/cryptoauthlib/.build/libateccssl.so: undefined reference to `g_cert_def_2_device' collect2: error: ld returned 1 exit status Makefile:132: recipe...

enhancement