cytopia

Results 225 comments of cytopia

Updated version also pushed to homebrew, webpage and announced on twitter.

@rokclimb15 it seems that a more recent OpenSSL version with `-stream` (as pointed out by Dr Stephen N. Henson in the OpenSSL ticket) works as expected. ``` shell # Old...

I see, decryption throws this error: ``` shell Error reading S/MIME message 140735184199760:error:07069041:memory buffer routines:BUF_MEM_grow_clean:malloc failure:buffer.c:150: 140735184199760:error:0D06B041:asn1 encoding routines:ASN1_D2I_READ_BIO:malloc failure:a_d2i_fp.c:239: ``` Too bad.

@rokclimb15 Thanks for this. I still have to see how exactly I need to implement the encryption (symmetric or asymmetric)

@brownbrady how large are those databases after compression? Encryption is always done after compression, so it is the compressed size which matters, not the actual database size.

Yes, it can be encypted, if the final filesize does not exceed 1.9GB. Looks like I've implemented the warning on the wrong size. It is checking the initial database size,...

Discussed on github openssl/openssl: * https://github.com/openssl/openssl/issues/2515 * https://github.com/openssl/openssl/issues/1302

@mwgamble you can already do this, see this example: https://github.com/cytopia/linkcheck#ignore-specific-urls ``` # Ignore localhost, 127.0.0.1 and *.loc domains linkcheck -i '^http(s)?:\/\/(localhost)|(127\.0\.0\.1|.)|(.+\.loc).*$' path/to/my/docs ``` This is (among others) ignoring anything from...

@redskate thanks for raising the concern. > **due to the fact that everything is defined via plain text,** included passwords, If you've been on any Debian machine with MySQL installed,...

@hqx I am not sure if it is GNU make syntax. Could you try again with `gmake` and report back please.