Recent content by Croseven

  1. C

    Decode Drivers Licence Barcode

    Someone have to had it figured out already, its not worth it to pay someone unless they can share code, that I will do but to be depended on someone is costing more money than it should. Currently I am using a company (probably everyone use them) but their servers failed a number of times and...
  2. C

    Decode Drivers Licence Barcode

    You can find the keys here on this posts, just go back a few pages, there is also some C# code samples however they are incomplete. I haven't worked on it again any further it is quite complicated after the keys are used.
  3. C

    Decode Drivers Licence Barcode

    Did anyone maybe succeed in decoding all information after the decryption is done, and also extract the image? I can't seem to figure out what is still needed to do after it is decrypted, there is still a lot of unreadable text. I tried to print as UTF8, UTF32, ASCII etc, some ISO encoding...
  4. C

    Decode Drivers Licence Barcode

    First I used the following code private byte[] HexToByteArray(string hex) { return Enumerable.Range(0, hex.Length) .Where(x => x % 2 == 0) .Select(x => Convert.ToByte(hex.Substring(x, 2), 16))...
  5. C

    Decode Drivers Licence Barcode

    Hi Sweettoe, do you maybe have information about decoding the decrypted content, I've spent the day trying to figure out what Encoding the resulting bytes are but its completely confusing. With ASCII, UTF8 I get content like this...
  6. C

    Decode Drivers Licence Barcode

    Thanks for your help this far, its still a bit confusing but at least I can get the Surname, Initials, Nationality and ID Number from the first 128 bytes, the other bytes I cannot figure out yet
  7. C

    Decode Drivers Licence Barcode

    Haha got it to work, forgot to convert the hex to bytes first before decoding it :). It still have a lot of gibberish in between but Im sure with some manipulation I can get the text out.
  8. C

    Decode Drivers Licence Barcode

    I use ScandIt, it scans the barcode quite good, but a dedicated 2d scanner works faster
  9. C

    Decode Drivers Licence Barcode

    I used this code, it did not fail however this doesn't decrypt it, almost looks more encrypted :) will still play around but here is the base64 for the first 128 bytes after your code. Will this be UTF7, UTF8 UTF32 or ASCII Input...
  10. C

    Decode Drivers Licence Barcode

    Yeah same here, but I hope that something comes to light. When I am trying something I tend to succeed in it, even if it is just for personal gain like yourself. I have 3 different (and cheap) scanners that gets the raw data but that is as far as it goes.
  11. C

    Decode Drivers Licence Barcode

    You have to buy a licence for each device, this licence all comes from one company if you do research litterly all leads will lead back to this company. The company name is Excelent ID, but now they are Codentity (same people have created multiple companies doing the same thing) BUT the licence...
  12. C

    Decode Drivers Licence Barcode

    Nah im not saying that they are incorrect, im hoping for that these codes are good, maybe a longshot but I have also thrown many efforts into it. Im hoping for a breakthrough sooner rather than later and I cannot afford to go through exid or any other 3rd parties as an alternative. The monopoly...
  13. C

    Decode Drivers Licence Barcode

    After many attempts I managed to load the key with RSACng in .Net 4.6.2 however I stumbled on a new issue(s) 1) Private key is required for decryption (all hashing algorithms gives exception 'Keyset does not exist') 2) Using the Encrypt as stated in pastebin doesn't work with any of the Hashing...
  14. C

    Decode Drivers Licence Barcode

    Code Here is the code I tried but due to the fact that the Exponent is 16 bytes `ImportParameters` is throwing an exception, if anyone managed to get the decrypt working please share some code string longKey = @"-----BEGIN RSA PUBLIC KEY-----...
Top
Sign up to the MyBroadband newsletter
X