Hatter Jiang
Hatter Jiang
Expect the plug-in mechanism to be introduced ASAP, I wrote a PoC to support a new KMS, I need to change so many files. I noticed that this function has...
Supports GunPG is another choice, since OpenPGP private keys can export and write to OpenPGP Card( like Yubikey ), so in this case Cryptomator just need to support GnuPG, then...
More one choice WebAuthn prf extension, explained in: https://github.com/w3c/webauthn/wiki/Explainer:-PRF-extension Bitwarden has supported this feature: https://bitwarden.com/blog/prf-webauthn-and-its-role-in-passkeys/
> Supports GunPG is another choice, since OpenPGP private keys can export and write to OpenPGP Card( like Yubikey ), so in this case Cryptomator just need to support GnuPG,...
Hi @purejava, Now you can open an issue now, thanks for your time.
I wrote a PoC encrypt with Yubikey PIV ECDH algorithm slot (RSA should also works), the PoC gist address is located: https://gist.github.com/jht5945/64a8d47ebf33ee64058d402eb9af94f3 ECDH explain: ``` ┌───────────────────┐ ┌───────────────────────────┐ │Tiny Encrypt │...
Also this issue from Nginx proxy requests, Nginx proxy_pass default uses HTTP/1.0
I found a magic solution: 1. add crate `ctrlc`, just `cargo add ctrlc` 2. call `ctrlc::set_handler` before call `dialoguer` ```rust let _ = ctrlc::set_handler(move || { // DO NOTHING });...
http://p.rogram.me/js/qrcode/ try this, i resolved this problem, the blow codes is resolving this problem: ``` var _countBits = function(_c) { var cnt = 0; while(_c > 0) { cnt++; _c...
WebAuthn PRF only support HMAC keys, usually it is a symmetric encrypt key, Remote CryptoKeys not only support symmetric keys, it will also support PKI(RSA/ECC) for singing and encryption, the...