John Yani
John Yani
Rough idea, might be not precise: - Once there was no life. There was just inanimate matter, molecules flying everywhere. - Organic matter formed into nucleic acids - The first...
There's this `base` file which contains a hidden cyclical dependency. The problem is `buffer` depends on `base` while `base` depends on `buffer`. https://github.com/indutny/asn1.js/blob/bbf14e0732b7d8a5addedb800c91da7bc2a17e83/lib/asn1/base/index.js#L1-L8 https://github.com/indutny/asn1.js/blob/master/lib/asn1/base/buffer.js#L4 It works in node (and probably...
There are parts of ASN.1 definition which content depends on the object identifier. For example, to encode/decode PKCS7 ContentInfo we need 2 steps: 1. decode generic ContentInfo 2. decode specific...
When using implicit `seqof(Type)`, where `Type` is `seq()`, the sequence is encoded as `a0`, while it seems it should be encoded as `30` Here's a test: Vanuan@055b737
ASN.1 states: > if the value of a component with the OPTIONAL or DEFAULT qualifier is absent from the sequence, then the encoding of that component is not included in...
The deficiency of ping-pong testing approach is that it only tests encode-decode path. The decode-encode path is not tested, unfortunately.
When opening configuration folder I see blank screen
If you haven't already heard about travis, read about it. It's awesome. All you have to do after you merge this is to login to https://travis-ci.org with your github account,...
What API level agit is intended for? Some dependencies require android-14, while others android-16.
Is there any reason why tests are in the main maven module? AFAIK, for android projects, there should be a separate project for tests. http://developer.android.com/tools/testing/testing_android.html#Instrumentation