All Projects → VirgilSecurity → virgil-crypto-c

VirgilSecurity / virgil-crypto-c

Licence: other
This library is designed to be small, flexible and convenient wrapper for a variety crypto algorithms. So it can be used in a small micro controller as well as in a high load server application.

Programming Languages

c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
PHP
23972 projects - #3 most used programming language
swift
15916 projects

Projects that are alternatives of or similar to virgil-crypto-c

kyber
No description or website provided.
Stars: ✭ 170 (+608.33%)
Mutual labels:  crypto, post-quantum-cryptography
virgil-crypto
Virgil Crypto is a high-level cryptographic library that allows you to perform all necessary operations for secure storing and transferring data and everything required to become HIPAA and GDPR compliant. Crypto Library is written in C++, suitable for mobile and server platforms and supports bindings with: Swift, Obj-C, Java (Android), С#/.NET, …
Stars: ✭ 74 (+208.33%)
Mutual labels:  crypto, pythia
cryptos
Pure Python from-scratch zero-dependency implementation of Bitcoin for educational purposes
Stars: ✭ 846 (+3425%)
Mutual labels:  crypto
jscrypto
Crypto library for Node/ES6/Typescript/Browser.
Stars: ✭ 20 (-16.67%)
Mutual labels:  crypto
price-prediction-bot
🔮 Run backtest over PancakeSwap and CandleGenie Prediction and place realtime bets - Trading Bot
Stars: ✭ 59 (+145.83%)
Mutual labels:  crypto
MKT
Exchange Price Service , Stocks , Cryptocurrency,Stock prediction and more
Stars: ✭ 27 (+12.5%)
Mutual labels:  crypto
api-version-2
Executium API Version 2 - A comprehensive trading system API which connects traders with dozens of exchanges. Currently in closed beta
Stars: ✭ 82 (+241.67%)
Mutual labels:  crypto
cryptowallet-cli
CW is a crypto wallet generator CLI tool for a lot of blockchains: Bitcoin, Ethereum, Binance Smart Chain and many others
Stars: ✭ 45 (+87.5%)
Mutual labels:  crypto
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+270.83%)
Mutual labels:  crypto
Open Crypto Tracker
Bitcoin / Alts private portfolio tracker, with email / text / alexa / telegram price alerts, charts, leverage support and much more.
Stars: ✭ 59 (+145.83%)
Mutual labels:  crypto
brapi
API ilimitada da Bovespa, moedas e crypto. Ganhe acesso aos dados de qualquer ação, moeda ou criptomoeda
Stars: ✭ 36 (+50%)
Mutual labels:  crypto
libsodium-xchacha20-siv
Deterministic/nonce-reuse resistant authenticated encryption scheme using XChaCha20, implemented on libsodium.
Stars: ✭ 25 (+4.17%)
Mutual labels:  crypto
Coinlist
Save your time on Coinlist registrations
Stars: ✭ 74 (+208.33%)
Mutual labels:  crypto
RCIG Coordination Repo
A Coordination repo for all things Rust Cryptography oriented
Stars: ✭ 175 (+629.17%)
Mutual labels:  crypto
tradeview
A platform for trading crypto currency pairs on crypto exchanges and running crypto currency pair strategies.
Stars: ✭ 69 (+187.5%)
Mutual labels:  crypto
cryptosub
Track 170+ cryptocurrency subreddits, view most popular coins, activity trends, most frequent words, and more
Stars: ✭ 37 (+54.17%)
Mutual labels:  crypto
reactive-trader
In the coming weeks this plans to become a Gekko plugin that reacts to market changes, finding and running only the most profitable strategies.
Stars: ✭ 91 (+279.17%)
Mutual labels:  crypto
onepile
Playground for the future of private notes and document management
Stars: ✭ 41 (+70.83%)
Mutual labels:  crypto
widgets
💸 Web3 Payments with any token. DePay simplifies and improves Web3 Payments with the power of DeFi. Accept any token with on-the-fly conversion with state-of-the-art widgets.
Stars: ✭ 32 (+33.33%)
Mutual labels:  crypto
mrrcrypt
A command line encryption/decryption tool using an adaptive mirror field algorithm.
Stars: ✭ 41 (+70.83%)
Mutual labels:  crypto

License

Virgil Security Crypto Library for C

branch build
master Build Status
develop Build Status

Introduction

This library is designed to be a small, flexible and convenient wrapper for a variety of crypto algorithms. So it can be used in a small microcontroller as well as in a high load server application. Also, it provides several custom hybrid algorithms that combine different crypto algorithms to solve common complex cryptographic problems in an easy way. This eliminates the requirement for developers to have strong cryptographic skills.

The library is available for different platforms and contains wrappers for other languages.

Features

The Virgil Security Crypto C library is decomposed into small libraries with specific purposes. A developer can freely choose a subset of libraries.

Library: Foundation

This library contains basic cryptographic algorithms and can be used as building blocks for complex solutions.

Algorithm Purpose Implementation details
Key Generation, PRNG CTR_DRBG NIST SP 800-90A
Key Derivation KDF1, KDF2, HKDF, PBKDF2
Key Exchange X25519, RSA, ECDH
Key Encapsulation Mechanism Round5, ECIES-KEM
Hashing SHA-2 (224/256/384/512)
Message Authentication Code HMAC
Digital Signature Ed25519, RSASSA-PSS, ECDSA, Falcon
Entropy Source Linux, macOS /dev/urandom,
Windows CryptGenRandom()
Symmetric Algorithms AES-256-GCM, AES-256-CBC
Encryption schemes PBES2
Elliptic Curves Ed25519, Curve25519, secp256R1
Post-quantum cryptography Falcon, Round5

Library: PHE

The cryptographic background for the Password-Hardened Encryption (PHE) protocol that provides developers the technology to protect user passwords from offline attacks and render stolen passwords useless even if your database has been compromised. The service implementation can be found here.

Library: Pythia

The cryptographic background for the Pythia PRF Service.

Library: Ratchet

Implementation of the Double Ratchet Algorithm.

Platforms & languages

Library Platforms Languages / Binaries
foundation all C, Swift, Java, JS, Python, Go, PHP
pythia linux, macOS C, Swift, Java, JS, Python, PHP
phe all C, PHP, Java, JS, Python, Go, PHP
ratchet all C, Swift, Java, JS, Python, Go

Build from sources

Prerequisites

  • Compiler:
    • gcc (version >= 4.8.2), or
    • clang (version >= 3.6), or
    • msvc (version >= 14.0)
  • Build tools:
    • cmake (version >= 3.12)
    • python (version >= 3)
    • python-protobuf

Build & Install

git clone https://github.com/VirgilSecurity/virgil-crypto-c.git
cd virgil-crypto-c
cmake -Bbuild -H.
cmake --build build
cmake --build build --target install

Run Benchmarks

cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_BENCHMARKING=ON \
      -DED25519_AMD64_RADIX_64_24K=ON -DED25519_REF10=OFF \
      -Bbuild -H.

cmake --build build -- -j10

./build/benchmarks/foundation/bench

Support

Our developer support team is here to help you.

You can find us on Twitter or send us an email [email protected].

Also, get extra help from our support team on Slack.

License

BSD 3-Clause. See LICENSE for details.

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].