write driver for opensc unknown card - driver

I'm trying to use opensc for my project, but unfortunately it does not support my java card. I though it will, because it has two drivers called "javacard" and "default" but none is compatible with mine (Kona26 card).
Does anybody know how I can write my own driver or any trick by which I can use opensc with my cards?
thanks in advance,

You can read this article from Github, which shows how to add a new card driver to make OpenSC work with your cards. Hope it helps!

Related

How do I unlock a locked file on Quadrivio General Editor Lite

First off: Not a programmer. At all. Please be gentle with the lingo. :)
I’m trying to fix a Realtek RTL8139 NIC card driver to work in my PowerMac 6500 using Quadrivio General Editor Lite.
The instructions suggest you to use this specific program to find and replace any incorrect vendor ID.
Here’s the text that shows the driver instructions from Realtek
http://ridl.cfd.rit.edu/products/manuals/sunix/LAN/6070_PCI_10_100MB/MAC/OS%208.5-9.1/TXT/INSTALL.TXT
The problems is when I load the OS9 extension into the editor - it’s locked.
Here’s some pics showing this https://imgur.com/a/xz0XHhO
How do I unlock it so I can proceed with the find and replace operation.
(If you are in any way interested in the backstory on this you can read the whole thread here > https://68kmla.org/bb/index.php?threads/need-help-getting-ethernet-internet-on-my-pm6500.40573/#post-439190)

NDIS driver - how?

I have read nearly all of the material on Microsoft's MSDN site, used Google (for the limited information that is out there) and also looked at the answers on here but I'm still confused on how to develop a NDIS driver.
My aim is to create a ndis driver so I can capture the network packets and decide whether I want to drop them (possibly inject as well) or allow them to pass.
From my research it would seem that I need to create an intermediate NIDS driver and after installing WDK (I'm using Visual Studio 2015 enterprise) I don't know where to begin (do I need to start with a KMDF project?).
Also, when I did load a KMDF driver project nearly all of the header files are getting highlighted by Intellisense as having errors (expected an identifier, NTSTATUS is underefined)?
Can anyone give some assistance on how to start please?
I have recently created a packet sniffer using the WinPcap library (and also used it to send packets) but there was a lot of information out there that helped me. Unfortunately, with NDIS it doesn't seem to be the same.
I can't seem to find the samples either
Okay, so a simple clean install of Visual Studio 2015 and WDK 10 is all that is needed to set up the environment for creating a driver.....
But then comes the deployment part

setting up for programming using webGL

I am having problems for setting up my laptop to program using webGL.
I am using mint linux 16. I tried installing nodejs because the webGL is javascript program but it seems not working. I am reading a book called WebGL programming guide and try to run an example in the book to make sure that my laptop is set up for webgl. One of the very first example in the book uses javascript libraries such as webgl-utils.js, webgl-debug.js... but I can find those libraries. Can anyone help me please??
I'd check to see if your video card or browser is supported.
http://get.webgl.org/
http://www.khronos.org/webgl/wiki/BlacklistsAndWhitelists

Is it possible to compile and use xapian, clucene or lucy on iOS?

I want to compile and use Xapian with xcode on iOS, is there any one with any experiments on this? Is it possible?
Is there any other option for implementing full text search on iOS?I have tried
S4luceneLib (in Obj-C) which works but is port of old version of lucene, also I
have checked Clucene and lucy, which like xapian i can not compile on iOS.
any help and comment will be appreciated.
Speaking as one of the Xapian authors, I don't recall hearing of anyone reporting trying to compile Xapian on iOS. I also don't know of any fundamental reason why it would be impossible to compile it on iOS. I suggest you contact the Xapian developer community (on the xapian-discuss mailing list: http://lists.xapian.org/mailman/listinfo/xapian-discuss or on the #xapian IRC channel on irc.freenode.net), and give details of the attempts you've made to compile Xapian, and the error messages or problems you encountered.

Solaris: Programmatic interface to ifconfig?

I'm looking for a programmatic interface to the Solaris ifconfig(1M) command.
Apparently Linux has the getifaddrs(3) command, but as far as I can tell this has not been ported to Solaris.
Short of attempting to use the code at the link above, is there any way to determine ifconfig(1M)-type data (network interface presence, state, etc.) without forking the system command and parsing the output?
I have an implementation here, IPv4-only based on SIOCGIFCONF ioctl()'s and IP family agnostic version using SIOCGLIFCONF:
http://code.google.com/p/openpgm/source/browse/trunk/openpgm/pgm/getifaddrs.c
Tested on SPARC/Solaris 10 and x86/OpenSolaris 2008.11 & 2009.06, LGPL 2.1 license.
getifaddrs() was recently integrated into the source code for future OpenSolaris & Solaris releases, but that doesn't help your code run on current releases:
6731945 need BSD getifaddrs() API
OpenSolaris source: usr/src/lib/libsocket/inet/getifaddrs.c
Until then you'll need to use the SIOCGLIFCONF ioctls, which you should find lots of examples of in open source code, including the link you posted.
Real men use ioctl ;)
Take a look at if(7P).

Resources