Anders Rundgren

Results 53 issues of Anders Rundgren

During testing of the [D-CBOR](https://github.com/cyberphone/D-CBOR) concept I ported a Java encoder to C. Just for fun I adjusted it a bit to test with the QCBOR test suite. However, "DoubleAsSmallestTest"...

Although QCBOR does not do map sorting there is actually no problem generating preferred serialization: Just for fun I patched example.c like the following: ``` QCBOREncode_OpenMap(&EncodeCtx); QCBOREncode_AddBoolToMap(&EncodeCtx, "Turbo", pEngine->bTurboCharged); QCBOREncode_OpenArrayInMap(&EncodeCtx,...

![fido-pay-li](https://user-images.githubusercontent.com/8044211/108576467-0f6dcf80-731e-11eb-8c02-48d461298cf6.png) Yuriy, you need to add https://github.com/rsolomakhin/secure-payment-confirmation to your list of awesome webauthn stuff since it is targeted to be the future for secure on-line payments. Personally I believe this...

Although PKCS 11 and friends are cool, sometimes I long for something simpler: https://www.segger.com/products/connectivity/emusb-device/add-ons/ip-over-usb/ Maybe that's just me 😎

The file keygen-jwt.sh contains a line OPENSSL_CNF_PATH= holding a path which doesn't match Ubuntu. It makes installation fail. This is the proper path for Ubuntu 18.*: /usr/lib/ssl/openssl.cnf

Pardon my "n00b" status when it comes to FIDO servers... According to https://w3c.github.io/webauthn/images/fido-signature-formats-figure2.svg: ![fido](https://w3c.github.io/webauthn/images/fido-signature-formats-figure2.svg) the signed data consists of two parts. Question: I have an application which depends on `clientDataHash'....

Since FIDO/WebAuthn is using rather unusual constructs, it seems reasonable to provide test vectors. Since I didn't find any test-vectors, I created such through live demos. Enjoy! ```code [{ "userAgent":...

type:technical
@Risk

Hi Open Bankers! From what I can deduct, Open Banking APIs have been created to permit regulated entities (TPPs) interacting with banks. Although this is great, this limits the ability...

I'm working with something that possibly will become an IETF standard: https://tools.ietf.org/html/draft-rundgren-json-canonicalization-scheme-02 It depends on number formatting compatible with ES6/V8. A short test revealed that the Java version of Ryu...

enhancement
Java

PaymentRequest is an interface and thus require implementations to be of any use. AFAICT, Apple only supports PaymentRequest in conjunction with Apple Pay which greatly limits its usability. None of...