Here’s a Plain C/C++ Implementation of AI Speech Recognition, So Get Hackin’

[Georgi Gerganov] recently shared a great resource for running high-quality AI-driven speech recognition in a plain C/C++ implementation on a variety of platforms. The automatic speech recognition (ASR) model is …read more Continue reading Here’s a Plain C/C++ Implementation of AI Speech Recognition, So Get Hackin’

What are some of the vulnerabilities in this code and What threat model is appropriate for this code?

//$ cat greetings.c
/*
* Compile this program with ‘make greetings’; run it with ./greetings
*
* A simple program to say hello and get to know the user better.
*
*/
#define _GNU_SOURCE
#pragma GCC diagnostic ignored "-Wformat&quo… Continue reading What are some of the vulnerabilities in this code and What threat model is appropriate for this code?

How to generate and hex encode a ED25519 keypair using openssl 3.0 c++ [migrated]

So far I can do the following. But I have no idea if it is working because I can’t see the keys. I am planning on extracting them into a char array and storing them In a struct. So I need the full encoded byte array for the private and pub… Continue reading How to generate and hex encode a ED25519 keypair using openssl 3.0 c++ [migrated]