├── CODE_OF_CONDUCT.md ├── COPYING ├── COPYING.LESSER ├── Dockerfile ├── README.md ├── _config.yml ├── check.multiotp.class.php ├── checkmultiotp.cmd ├── contrib ├── AES.php ├── ASN1.php ├── Base.php ├── BigInteger.php ├── Blowfish.php ├── DES.php ├── FUNC4.php ├── FUNC5.php ├── Hash.php ├── MAIL4.php ├── MAIL5.php ├── MIME4.php ├── MIME5.php ├── MultiotpAdLdap.php ├── MultiotpQrcode.php ├── MultiotpShowStatus.php ├── MultiotpSms.php ├── MultiotpSyslog.php ├── MultiotpTools.php ├── MultiotpXmlParser.php ├── MultiotpYubikey.php ├── RC2.php ├── RC4.php ├── RSA.php ├── Random.php ├── Rijndael.php ├── SFTP.php ├── SMTP4.php ├── SMTP5.php ├── SSH2.php ├── Stream.php ├── TripleDES.php ├── Twofish.php ├── X509.php ├── ZypioSNMP.php ├── barcode.php └── nusoap.php ├── docs └── terms-conditions.md ├── launcher ├── ReadMe.txt ├── launcher.cpp ├── resource.h ├── stdafx.cpp └── stdafx.h ├── md5.js ├── multiotp.class.php ├── multiotp.cli.header.php ├── multiotp.cli.proxy.php ├── multiotp.php ├── multiotp.server.php ├── multiotp.wsdl ├── oath ├── pskc-hotp-aes.txt ├── pskc-hotp-pbe.txt ├── pskc-totp-aes.txt ├── pskc-totp-pbe.txt ├── test-token.xml ├── tokens_hotp_aes.pskc ├── tokens_hotp_pbe.pskc ├── tokens_ocra_aes.pskc ├── tokens_ocra_pbe.pskc ├── tokens_totp_aes.pskc └── tokens_totp_pbe.pskc ├── radius_debug.cmd ├── radius_install.cmd ├── radius_uninstall.cmd ├── raspberry ├── boot-part │ ├── install.sh │ ├── multiotp-tree │ │ ├── etc │ │ │ ├── freeradius │ │ │ │ ├── clients.conf │ │ │ │ ├── modules │ │ │ │ │ ├── inner-tunnel │ │ │ │ │ └── multiotp │ │ │ │ ├── policy.conf │ │ │ │ └── sites-available │ │ │ │ │ └── default │ │ │ ├── init.d │ │ │ │ └── multiotp │ │ │ ├── network │ │ │ │ └── interfaces │ │ │ ├── nginx │ │ │ │ ├── mime.types │ │ │ │ ├── nginx.conf │ │ │ │ └── sites-available │ │ │ │ │ ├── multiotp │ │ │ │ │ └── multiotp-proxy │ │ │ ├── ntp.conf │ │ │ ├── php5 │ │ │ │ └── mods-available │ │ │ │ │ └── apc.ini │ │ │ ├── php7.0 │ │ │ │ └── mods-available │ │ │ │ │ └── apc.ini │ │ │ ├── resolv.conf │ │ │ └── sudoers.d │ │ │ │ └── www-data-authorized │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ └── multiotp │ │ │ ├── COPYING │ │ │ ├── COPYING.LESSER │ │ │ ├── index.php │ │ │ ├── multiotp.class.php │ │ │ ├── multiotp.php │ │ │ ├── multiotp.proxy.php │ │ │ ├── oath │ │ │ ├── pskc-hotp-aes.txt │ │ │ ├── pskc-hotp-pbe.txt │ │ │ ├── pskc-totp-aes.txt │ │ │ ├── pskc-totp-pbe.txt │ │ │ ├── test-token.xml │ │ │ ├── tokens_hotp_aes.pskc │ │ │ ├── tokens_hotp_pbe.pskc │ │ │ ├── tokens_ocra_aes.pskc │ │ │ ├── tokens_ocra_pbe.pskc │ │ │ ├── tokens_totp_aes.pskc │ │ │ └── tokens_totp_pbe.pskc │ │ │ ├── readme_5.10.0.3.txt │ │ │ ├── scripts │ │ │ ├── multiotp-service.sh │ │ │ └── multiotp.pl │ │ │ ├── templates │ │ │ ├── scratchtemplate.html │ │ │ └── template.html │ │ │ └── test-tokens.csv │ ├── newvm.sh │ └── ssh ├── how-to-build-a-raspberry-strong-authentication-server.txt └── multiotp-open-source-raspberry-img.txt ├── scripts ├── multiotp-service.sh └── multiotp.pl ├── templates ├── scratchtemplate.html └── template.html ├── test-tokens.csv ├── webservice_install.cmd └── webservice_uninstall.cmd /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/_config.yml -------------------------------------------------------------------------------- /check.multiotp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/check.multiotp.class.php -------------------------------------------------------------------------------- /checkmultiotp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/checkmultiotp.cmd -------------------------------------------------------------------------------- /contrib/AES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/AES.php -------------------------------------------------------------------------------- /contrib/ASN1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/ASN1.php -------------------------------------------------------------------------------- /contrib/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Base.php -------------------------------------------------------------------------------- /contrib/BigInteger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/BigInteger.php -------------------------------------------------------------------------------- /contrib/Blowfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Blowfish.php -------------------------------------------------------------------------------- /contrib/DES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/DES.php -------------------------------------------------------------------------------- /contrib/FUNC4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/FUNC4.php -------------------------------------------------------------------------------- /contrib/FUNC5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/FUNC5.php -------------------------------------------------------------------------------- /contrib/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Hash.php -------------------------------------------------------------------------------- /contrib/MAIL4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MAIL4.php -------------------------------------------------------------------------------- /contrib/MAIL5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MAIL5.php -------------------------------------------------------------------------------- /contrib/MIME4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MIME4.php -------------------------------------------------------------------------------- /contrib/MIME5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MIME5.php -------------------------------------------------------------------------------- /contrib/MultiotpAdLdap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpAdLdap.php -------------------------------------------------------------------------------- /contrib/MultiotpQrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpQrcode.php -------------------------------------------------------------------------------- /contrib/MultiotpShowStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpShowStatus.php -------------------------------------------------------------------------------- /contrib/MultiotpSms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpSms.php -------------------------------------------------------------------------------- /contrib/MultiotpSyslog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpSyslog.php -------------------------------------------------------------------------------- /contrib/MultiotpTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpTools.php -------------------------------------------------------------------------------- /contrib/MultiotpXmlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpXmlParser.php -------------------------------------------------------------------------------- /contrib/MultiotpYubikey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/MultiotpYubikey.php -------------------------------------------------------------------------------- /contrib/RC2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/RC2.php -------------------------------------------------------------------------------- /contrib/RC4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/RC4.php -------------------------------------------------------------------------------- /contrib/RSA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/RSA.php -------------------------------------------------------------------------------- /contrib/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Random.php -------------------------------------------------------------------------------- /contrib/Rijndael.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Rijndael.php -------------------------------------------------------------------------------- /contrib/SFTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/SFTP.php -------------------------------------------------------------------------------- /contrib/SMTP4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/SMTP4.php -------------------------------------------------------------------------------- /contrib/SMTP5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/SMTP5.php -------------------------------------------------------------------------------- /contrib/SSH2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/SSH2.php -------------------------------------------------------------------------------- /contrib/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Stream.php -------------------------------------------------------------------------------- /contrib/TripleDES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/TripleDES.php -------------------------------------------------------------------------------- /contrib/Twofish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/Twofish.php -------------------------------------------------------------------------------- /contrib/X509.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/X509.php -------------------------------------------------------------------------------- /contrib/ZypioSNMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/ZypioSNMP.php -------------------------------------------------------------------------------- /contrib/barcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/barcode.php -------------------------------------------------------------------------------- /contrib/nusoap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/contrib/nusoap.php -------------------------------------------------------------------------------- /docs/terms-conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/docs/terms-conditions.md -------------------------------------------------------------------------------- /launcher/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/launcher/ReadMe.txt -------------------------------------------------------------------------------- /launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/launcher/launcher.cpp -------------------------------------------------------------------------------- /launcher/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/launcher/resource.h -------------------------------------------------------------------------------- /launcher/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/launcher/stdafx.cpp -------------------------------------------------------------------------------- /launcher/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/launcher/stdafx.h -------------------------------------------------------------------------------- /md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/md5.js -------------------------------------------------------------------------------- /multiotp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/multiotp.class.php -------------------------------------------------------------------------------- /multiotp.cli.header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/multiotp.cli.header.php -------------------------------------------------------------------------------- /multiotp.cli.proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/multiotp.cli.proxy.php -------------------------------------------------------------------------------- /multiotp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/multiotp.php -------------------------------------------------------------------------------- /multiotp.server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/multiotp.server.php -------------------------------------------------------------------------------- /multiotp.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/multiotp.wsdl -------------------------------------------------------------------------------- /oath/pskc-hotp-aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/pskc-hotp-aes.txt -------------------------------------------------------------------------------- /oath/pskc-hotp-pbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/pskc-hotp-pbe.txt -------------------------------------------------------------------------------- /oath/pskc-totp-aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/pskc-totp-aes.txt -------------------------------------------------------------------------------- /oath/pskc-totp-pbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/pskc-totp-pbe.txt -------------------------------------------------------------------------------- /oath/test-token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/test-token.xml -------------------------------------------------------------------------------- /oath/tokens_hotp_aes.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/tokens_hotp_aes.pskc -------------------------------------------------------------------------------- /oath/tokens_hotp_pbe.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/tokens_hotp_pbe.pskc -------------------------------------------------------------------------------- /oath/tokens_ocra_aes.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/tokens_ocra_aes.pskc -------------------------------------------------------------------------------- /oath/tokens_ocra_pbe.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/tokens_ocra_pbe.pskc -------------------------------------------------------------------------------- /oath/tokens_totp_aes.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/tokens_totp_aes.pskc -------------------------------------------------------------------------------- /oath/tokens_totp_pbe.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/oath/tokens_totp_pbe.pskc -------------------------------------------------------------------------------- /radius_debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/radius_debug.cmd -------------------------------------------------------------------------------- /radius_install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/radius_install.cmd -------------------------------------------------------------------------------- /radius_uninstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/radius_uninstall.cmd -------------------------------------------------------------------------------- /raspberry/boot-part/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/install.sh -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/freeradius/clients.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/freeradius/clients.conf -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/freeradius/modules/inner-tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/freeradius/modules/inner-tunnel -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/freeradius/modules/multiotp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/freeradius/modules/multiotp -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/freeradius/policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/freeradius/policy.conf -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/freeradius/sites-available/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/freeradius/sites-available/default -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/init.d/multiotp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/init.d/multiotp -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/network/interfaces -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/nginx/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/nginx/mime.types -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/nginx/sites-available/multiotp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/nginx/sites-available/multiotp -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/nginx/sites-available/multiotp-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/nginx/sites-available/multiotp-proxy -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/ntp.conf -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/php5/mods-available/apc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/php5/mods-available/apc.ini -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/php7.0/mods-available/apc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/php7.0/mods-available/apc.ini -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/resolv.conf -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/etc/sudoers.d/www-data-authorized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/etc/sudoers.d/www-data-authorized -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/COPYING -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/COPYING.LESSER -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/index.php -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/multiotp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/multiotp.class.php -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/multiotp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/multiotp.php -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/multiotp.proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/multiotp.proxy.php -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-hotp-aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-hotp-aes.txt -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-hotp-pbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-hotp-pbe.txt -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-totp-aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-totp-aes.txt -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-totp-pbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/pskc-totp-pbe.txt -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/test-token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/test-token.xml -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_hotp_aes.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_hotp_aes.pskc -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_hotp_pbe.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_hotp_pbe.pskc -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_ocra_aes.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_ocra_aes.pskc -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_ocra_pbe.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_ocra_pbe.pskc -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_totp_aes.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_totp_aes.pskc -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_totp_pbe.pskc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/oath/tokens_totp_pbe.pskc -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/readme_5.10.0.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/readme_5.10.0.3.txt -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/scripts/multiotp-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/scripts/multiotp-service.sh -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/scripts/multiotp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/scripts/multiotp.pl -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/templates/scratchtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/templates/scratchtemplate.html -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/templates/template.html -------------------------------------------------------------------------------- /raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/test-tokens.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/multiotp-tree/usr/local/bin/multiotp/test-tokens.csv -------------------------------------------------------------------------------- /raspberry/boot-part/newvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/boot-part/newvm.sh -------------------------------------------------------------------------------- /raspberry/boot-part/ssh: -------------------------------------------------------------------------------- 1 | ssh -------------------------------------------------------------------------------- /raspberry/how-to-build-a-raspberry-strong-authentication-server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/how-to-build-a-raspberry-strong-authentication-server.txt -------------------------------------------------------------------------------- /raspberry/multiotp-open-source-raspberry-img.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/raspberry/multiotp-open-source-raspberry-img.txt -------------------------------------------------------------------------------- /scripts/multiotp-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/scripts/multiotp-service.sh -------------------------------------------------------------------------------- /scripts/multiotp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/scripts/multiotp.pl -------------------------------------------------------------------------------- /templates/scratchtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/templates/scratchtemplate.html -------------------------------------------------------------------------------- /templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/templates/template.html -------------------------------------------------------------------------------- /test-tokens.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/test-tokens.csv -------------------------------------------------------------------------------- /webservice_install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/webservice_install.cmd -------------------------------------------------------------------------------- /webservice_uninstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiOTP/multiotp/HEAD/webservice_uninstall.cmd --------------------------------------------------------------------------------