All Projects → Nitrokey → Nitrokey App

Nitrokey / Nitrokey App

Licence: gpl-3.0
Nitrokey's Application (Win, Linux, Mac)

Projects that are alternatives of or similar to Nitrokey App

gpgpwd
Moved to GitLab
Stars: ✭ 22 (-89.52%)
Mutual labels:  password-manager, password-vault, password-store
Buttercup Mobile
📱 React-Native mobile application for Buttercup
Stars: ✭ 297 (+41.43%)
Mutual labels:  password-manager, password-store, password-vault
password-keeper
A simple and secure Password Management System made completely in Python.
Stars: ✭ 26 (-87.62%)
Mutual labels:  password-manager, password-vault, password-store
Rooster
The simple password manager for geeks, built with Rust.
Stars: ✭ 106 (-49.52%)
Mutual labels:  password-manager, password-store, password-vault
Buttercup Browser Extension
🌏 Buttercup browser extension
Stars: ✭ 164 (-21.9%)
Mutual labels:  password-manager, password-store, password-vault
keevault
Kee Vault is a password manager for your web browser. Password databases (Vaults) are encrypted using the KeePass storage format before being sent to a remote server for synchronisation across any modern device/browser
Stars: ✭ 57 (-72.86%)
Mutual labels:  password-manager, password-vault, password-store
Pash
🔒 A simple password manager using GPG written in POSIX sh.
Stars: ✭ 254 (+20.95%)
Mutual labels:  password-manager, password-store, password-vault
Gokey
A simple vaultless password manager in Go
Stars: ✭ 305 (+45.24%)
Mutual labels:  password-manager, password-store, password-vault
Authorizer
Authorizer is a Password Manager for Android. It emulates an HID keyboard over USB and enters your credentials on your target device. Additionally it supports OTP 🔑📴
Stars: ✭ 172 (-18.1%)
Mutual labels:  otp, password-manager, password-store
Buttercup Core
🎩 The mighty NodeJS password vault
Stars: ✭ 340 (+61.9%)
Mutual labels:  password-manager, password-store, password-vault
Qtpass
QtPass is a multi-platform GUI for pass, the standard unix password manager.
Stars: ✭ 763 (+263.33%)
Mutual labels:  password-manager, password-vault, qt5
Strongbox
A KeePass/Password Safe Client for iOS and OS X
Stars: ✭ 586 (+179.05%)
Mutual labels:  password-manager, password-store, password-vault
Masterpassword
Project moved to https://gitlab.com/spectre.app
Stars: ✭ 1,122 (+434.29%)
Mutual labels:  password-manager, password-store, password-vault
Packetsender
Network utility for sending / receiving TCP, UDP, SSL
Stars: ✭ 1,349 (+542.38%)
Mutual labels:  cross-platform, qt5
Gtest Runner
A cross-platform, Qt5 based Graphical User Interface for Google Test unit tests
Stars: ✭ 207 (-1.43%)
Mutual labels:  cross-platform, qt5
Ugene
UGENE is free open-source cross-platform bioinformatics software
Stars: ✭ 112 (-46.67%)
Mutual labels:  cross-platform, qt5
App
free software application for social network analysis and visualization
Stars: ✭ 94 (-55.24%)
Mutual labels:  cross-platform, qt5
Qhttpengine
HTTP server for Qt applications
Stars: ✭ 112 (-46.67%)
Mutual labels:  cross-platform, qt5
Keepassxc
KeePassXC is a cross-platform community-driven port of the Windows application “Keepass Password Safe”.
Stars: ✭ 11,623 (+5434.76%)
Mutual labels:  cross-platform, password-manager
Notepanda
📃 A simple cross-platform notepad. Based on Qt and C++.
Stars: ✭ 134 (-36.19%)
Mutual labels:  cross-platform, qt5

Nitrokey App Build Status Coverity Scan Build

Nitrokey App is a cross-platform (runs under Windows, Linux and Mac OS) application created to manage Nitrokey devices. Lately developed under Ubuntu 17.10/18.04 with Qt5.9. Underneath it uses libnitrokey to communicate with the supported devices. Both Nitrokey App and libnitrokey are available under GPLv3 license.

Supported devices

Currently Nitrokey App supports:

  • Nitrokey Pro v0.7/v0.8,
  • Nitrokey Storage.

For Nitrokey HSM please see Nitrokey Encryption Tool. Nitrokey Start has its own tools in its firmware repository.

Compatibility

The implementation is compatible to the Google Authenticator application which can be used for testing purposes. Test vectors from proper specifications also works:

  • HOTP: An HMAC-Based One-Time Password Algorithm - RFC4226,
  • TOTP: Time-Based One-Time Password Algorithm - RFC6238.

Each libnitrokey's and supported devices' firmware release OTPs are tested automatically, according to the RFCs test vectors.

Builds

Ready to use binaries are available at releases page. More details could be found at main download site.

Using under Linux

Using the application under Linux requires configuration of device privileges in udev (due to USB communication). The configuration is installed automatically with the libnitrokey library (either with a package or after make install). Without it application cannot communicate unless run with root privileges.

Known issues

Tray icon under Gnome 3.26

Gnome 3.26 (and later) removed support for the tray dock and tray icon (Ubuntu 18.04 is not affected - it contains own plugin to support it). For more details please see: NitrokeyApp#274. Nitrokey App v1.3 should solve this by introducing main window, which is shown right on application's start.

Tray icon under Debian Jessie

Under Debian Jessie application's tray icon might be unavailable. There were reports it can be fixed with updating Qt libraries to 5.4.2 version and up. The packages are available in experimental OS branch. For more details please refer to: NitrokeyApp#86. Another way to workaround this is using an AppImage binary release, introduced in Nitrokey App v1.3.

Installation and downloads

Ready to use packages and install instructions are available on main site in download section: https://www.nitrokey.com/download

Compilation

Ready to use Docker containers for building AppImage, Windows and Snapcraft binaries are available at nitrokey-app.build project. There are set automatic builds using Travis CI as well. Below are detailed instructions how to make a build manually.

Compiling on Ubuntu Linux

Prerequisites for building on Ubuntu 17.10:

  • build-essential - for building applications
  • cmake - for compiling libnitrokey
  • qt5-default - QT5 library
  • qttools5-dev and qttools5-dev-tools - QT5 library tools - generating translations
  • libqt5svg5-dev - QT5 library for rendering SVG
  • libqt5concurrent5 - QT5 library for concurrent calls
  • pkg-config - system libraries detection
  • libnitrokey (v3.3+) - this is built only, if not already installed in the OS (otherwise App will use system library)
    • libusb-1.0-0-dev - library to communicate with USB devices
    • libhidapi-dev - to communicate using HID layer

Whole command for Ubuntu:

sudo apt-get install libusb-1.0.0-dev cmake qt5-default qttools5-dev qttools5-dev-tools pkg-config libhidapi-dev build-essential libqt5svg5-dev libqt5concurrent5

During the compilation CMake will test via pkg-config, whether system libnitrokey is available, and is it at least LIBNK_MIN_VERSION version. On failed test libnitrokey will be compiled as well.

Getting the Nitrokey Sources

Clone the Nitrokey-App repository using git and --recursive switch:

git clone https://github.com/Nitrokey/nitrokey-app.git --recursive

Qt Creator

Prerequisites: Install Qt manually using download page or through package manager:

sudo apt-get install qt5-default
sudo apt-get install qtcreator #for compilation using IDE

Please open nitrokey-app-qt5.pro file and select Build All from Build menu.

Using CMake:

General use:

# in nitrokey-app directory:
mkdir build
cd build
mkdir install
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./install ..
make -j4
make install

This will build and install binary to ./build/install directory. Please omit -DCMAKE_INSTALL_PREFIX=./install in case you would like to install it to the system.

Note: In case you have downloaded Qt manually from web download page you have to set CMAKE_PREFIX_PATH to your corresponding Qt path. Example: (If QT5.5 (64bit) was installed in your $HOME DIR):

export CMAKE_PREFIX_PATH=$HOME/Qt/5.5/gcc_64/

Using QMake:

Please run following commands for out-of-the-source build:

mkdir build && cd build
qmake ..
make -j4 
# make install

Debian Packages

Building Debian Packages

Execute the following in directory "nitrokey-app":

 fakeroot make -f debian/rules binary

Cleanup with:

fakeroot make -f debian/rules clean

Requirements: fakeroot, debhelper, hardening-wrapper, qt5-default, libusb-1.0-0-dev, cmake.

Building RPM and Debian Packages (alternative)

CMake can generate RPM packages using CPack. It can also generate .deb package using other method than presented in previous section. To create both packages please execute the following in directory "nitrokey-app":

mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j4 package

This will result in two packages: .deb and .rpm.

Cross Compiling with QT5 for Windows on Ubuntu Linux (using MXE)

Please run following commands:

# install dependencies for compilation
sudo apt-get install bison cmake flex intltool libtool scons
# MXE GCC6, x32
#remove MXE_PLUGIN_DIRS switch to use GCC 5.4.0 instead of GCC 6
git clone https://github.com/mxe/mxe.git && pushd mxe
make MXE_TARGETS=i686-w64-mingw32.static.posix MXE_PLUGIN_DIRS=plugins/gcc6  qtbase # takes about 1 hour first time
popd

#following should download nitrokey-app and libnitrokey with hidapi (own clone with applied OS-specific patches)
git clone https://github.com/Nitrokey/nitrokey-app.git --recursive 
pushd nitrokey-app/libnitrokey/build
ln -s ../../../mxe/usr/bin/
./bin/i686-w64-mingw32.static.posix-cmake ..
make -j
popd

mkdir nitrokey-app/build/
pushd nitrokey-app/build/
ln -s ../mxe/usr/bin/
./bin/i686-w64-mingw32.static.posix-qmake ..
PATH=$PATH:./bin make -j
popd

Compiling and creating a package for MAC OS

  1. Use Qt (qmake) to compile the Nitrokey App
  2. Navigate to <build_dir>/<app_name>/Contents
  3. Create a .dmg file: go to the build directory and run:
    macdeployqt <app_name>/ -dmg. <app_name>.dmg file will be created at the same folder. This is the final file for distributing the App on Mac OS
  4. Compress the .dmg package:
    • Open Disk Utility
    • Select the dmg package from left column (or drag'n'drop)
    • Select Convert, check "compressed" option and then "Save"

Tray

Note that the Nitrokey App's graphical interface is based on a QT system tray widget. If you are using a Linux desktop environment that does not support system tray widgets, then you may be unable to access the graphical interface. Nitrokey App v1.3 shows main window right on start, offering tray's menu, and it is possible to configure it to quit once the main window is closed.

Internals

All configuration data including OTP secrets are stored in clear text in the flash of Nitrokey's microcontroller. This is not tamper resistant and may only be used for low to medium security requirements. Password Safe is encrypted using 256 bit AES key to which access is protected with SIM card.

By default the OTP serial number (OTP Token) is OpenPGP Card's serial number. It can be changed within the GUI for each entry. The USB device serial number is set to the card's serial number when the device powers up.

(disabled feature) Keyboard Layout: The user will input the token ID values as he wants them displayed, then the gui will translate them to keycodes of the selected layout. The keycodes will be stored on the device, along with a number saying which layout was used, this number is important when the GUI application reads the conifg back from the device (to translate the keycodes back into characters).

The report protocol is described here for Pro and here for Storage. The HID reports are set to 64 bytes. The "output report" is what you get from the device. When you send a report (command), the first byte sets the command type, then you have 59 bytes for your data, and the last 4 bytes are the CRC32 of the whole report.

On the client side, please check documentation of libnitrokey project.

Advantages of App 1.x branch over 0.x

Nitrokey App v1.x uses libnitrokey for communication with device, making the code both testable and reusable. Furthermore communication speed is vastly improved. Most of the code now makes requests to device in the background improving GUI responsiveness. Also the delay between sending and receiving is decreased. Additionally device-related information is now lazy-loaded, which means App requests the data only when it needs them (it was earlier loading all OTP slot data to memory).

Migration to libnitrokey comes with a cost of increasing compiler's requirements to be compliant with C++14 standard. Fortunately most compatible compilers have been released in 2015 and all current ones should work.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].