computerquip-work

Results 8 issues of computerquip-work

### What would you like to see added? EVP_PKEY-based algorithm type ### Additional Context It seems like it would be possible to have an algorithm type that's built from an...

enhancement

Bash has job control functionality that lets you provide a set of pids and then exit when any one of them exits. I *think* this can be implemented with wait...

Is there any way to get the response to omit the data field? For the most part, it's sort of redundant information for me. If I use `set_error()` with no...

Seems uwsgi makes the common mistake of [iterating through all possible descriptor values](https://github.com/unbit/uwsgi/blob/d58a832c81c2c96ae0f6e72614e1cc47f4b5d332/core/emperor.c#L1674) instead of closing only known existing values. A (increasingly smaller) majority of people can get away with...

A simple attempt at fixing the issues with UNICODE. I've not removed the countermeasures already implemented. Work towards: https://github.com/laudrup/boost-wintls/issues/84

``` inline SECURITY_STATUS AcquireCredentialsHandle(SEC_CHAR* pPrincipal, SEC_CHAR* pPackage, unsigned long fCredentialUse, void* pvLogonId, void* pAuthData, SEC_GET_KEY_FN pGetKeyFn, void* pvGetKeyArgument, PCredHandle phCredential, PTimeStamp ptsExpiry) ``` If the build system defines UNICODE, AcquireCredentialsHandle...

I was struggling a bit getting reasonable error codes. I use the exception-based API for readability purposes. Most of these functions take a source_location parameter but it turns out that...

Any time virt_install is used to create a VM with `boot: uefi`, the VM cannot be removed in an idempotent way since it will complain that it cannot undefine a...