You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I would like to use Arduino Due as an replacement for android app Easy Token (RSA).
This board should be powerful enough to compute the token in an reasonable time.
So my question is if there is an easy way to extract only the needed functionality, because GUI will be significantly different. Maybe I just missed the pattern in the files organization :)
The text was updated successfully, but these errors were encountered:
Bare minimum would probably look something like: common.c, compat.c, library.c, securid.c, and associated header files. You'd want to strip out the file I/O, figure out a way to import your token string, and write an stc-*.c wrapper for your preferred crypto library. A bunch of the stc wrappers are only used by sdtid.c so skip that if you can.
I don't think there's a way to use GNU Autoconf for Arduino projects, so the easiest path forward might be to copy the source files into the GUI and use their build system.
Hi again, I think I was able to replace the crypto functions, but right now I am kind of struck on __stoken_parse_and_decode_token is there some short list what this function does, so I can replace it with constants and assignments?
Hello, I would like to use Arduino Due as an replacement for android app Easy Token (RSA).
This board should be powerful enough to compute the token in an reasonable time.
So my question is if there is an easy way to extract only the needed functionality, because GUI will be significantly different. Maybe I just missed the pattern in the files organization :)
The text was updated successfully, but these errors were encountered: