Git Product home page Git Product logo

virgil-crypto-x's Introduction

Virgil Crypto Library Objective-C/Swift

Build Status CocoaPods Compatible SPM compatible Platform GitHub license

Introduction | Library purposes | Installation | Usage examples | Docs | License | Contacts

Introduction

Virgil Crypto Library Objective-C/Swift is a small, flexible and convenient wrapper for a variety of crypto algorithms. It can be used in a small microcontroller as well as in a high load server application. Also, it provides a bunch of custom hybrid algorithms that combine different crypto algorithms to solve common complex cryptographic problems in an easy way. That eliminates a requirement for developers to have strong cryptographic skills.

Virgil Security Objective-C/Swift Crypto Library uses Swift wrapper Virgil Security Crypto Library Wrapper over C library Virgil Security Crypto Library.

Library purposes

  • Asymmetric Key Generation
  • Encryption/Decryption of data and streams
  • Generation/Verification of digital signatures
  • Double Ratchet algorithm support
  • Post-quantum algorithms support: Round5 (encryption) and Falcon (signature)
  • Crypto for using Virgil Core SDK

Installation

VirgilCrypto is provided as a set of frameworks. These frameworks are distributed via Carthage and CocoaPods.

All frameworks are available for:

  • iOS 11.0+
  • macOS 10.13+
  • tvOS 11.0+
  • watchOS 4.0+

COCOAPODS

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate VirgilCrypto into your Xcode project using CocoaPods, specify it in your Podfile:

target '<Your Target Name>' do
  use_frameworks!

  pod 'VirgilCrypto', '~> 7.0.1'
end

Then, run the following command:

$ pod install

Swift Package Manager

Swift Package Manager is an official Apple tool for managing the distribution of Swift code.

The Apple documentation can be used to add frameworks to an Xcode project.

Usage examples

Generate a key pair

Generate a private key using the default algorithm (EC_X25519):

import VirgilCrypto

let crypto = try! VirgilCrypto()
let keyPair = try! crypto.generateKeyPair()

Generate and verify a signature

Generate signature and sign data with a private key:

import VirgilCrypto

let crypto = try! VirgilCrypto()

// prepare a message
let messageToSign = "Hello, Bob!"
let dataToSign = messageToSign.data(using: .utf8)!

// generate a signature
let signature = try! crypto.generateSignature(of: dataToSign, using: senderPrivateKey)

Verify a signature with a public key:

import VirgilCrypto

let crypto = try! VirgilCrypto()

// verify a signature
let verified = try! crypto.verifySignature(signature, of: dataToSign, with: senderPublicKey)

Encrypt and decrypt data

Encrypt data with a public key:

import VirgilCrypto

let crypto = try! VirgilCrypto()

// prepare a message
let messageToEncrypt = "Hello, Bob!"
let dataToEncrypt = messageToEncrypt.data(using: .utf8)!

// encrypt the message
let encryptedData = try! crypto.encrypt(dataToEncrypt, for: [receiverPublicKey])

Decrypt the encrypted data with a Private Key:

import VirgilCrypto

let crypto = try! VirgilCrypto()

// prepare data to be decrypted
let decryptedData = try! crypto.decrypt(encryptedData, with: receiverPrivateKey)

// decrypt the encrypted data using a private key
let decryptedMessage = String(data: decryptedData, encoding: .utf8)!

Import and export keys

Export keys:

import VirgilCrypto

// generate a Key Pair
let crypto = VirgilCrypto()
let keyPair = try! crypto.generateKeyPair()

// export a Private key
let privateKeyData = try! crypto.exportPrivateKey(keyPair.privateKey, password: "YOUR_PASSWORD")
let privateKeyStr = privateKeyData.base64EncodedString()

// export a Public key
let publicKeyData = crypto.exportPublicKey(keyPair.publicKey)
let publicKeyStr = publicKeyData.base64EncodedString()

Import keys:

import VirgilCrypto

let crypto = VirgilCrypto()

let privateKeyStr = "MIGhMF0GCSqGSIb3DQEFDTBQMC8GCSqGSIb3DQEFDDAiBBBtfBoM7VfmWPlvyHuGWvMSAgIZ6zAKBggqhkiG9w0CCjAdBglghkgBZQMEASoEECwaKJKWFNn3OMVoUXEcmqcEQMZ+WWkmPqzwzJXGFrgS/+bEbr2DvreVgEUiLKrggmXL9ZKugPKG0VhNY0omnCNXDzkXi5dCFp25RLqbbSYsCyw="

let privateKeyData = Data(base64Encoded: privateKeyStr)!

// import a Private key
let privateKey = try! crypto.importPrivateKey(from: privateKeyData, password: "YOUR_PASSWORD")

//-----------------------------------------------------

let publicKeyStr = "MCowBQYDK2VwAyEA9IVUzsQENtRVzhzraTiEZZy7YLq5LDQOXGQG/q0t0kE="

let publicKeyData = Data(base64Encoded: publicKeyStr)!

// import a Public key
let publicKey = try! crypto.importPublicKey(from: publicKeyData)

Docs

License

This library is released under the 3-clause BSD License.

Support

Our developer support team is here to help you.

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

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

virgil-crypto-x's People

Contributors

ddain avatar mariiamalitska avatar ogerets avatar sanjodeundiak avatar sergeyseroshtan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

virgil-crypto-x's Issues

SPM support

Hi!

Is there any information about Swift Package Manager support ?
Is there anything standing in the way of supporting SPM ?

I would appreciate if you would add it!

Building v3.2 with Carthage

Hello,

I am attempting to use Carthage to build version 3.2.3 this library and am encountering an error while building Using Xcode 11.0 / Swift 5.1.


Xcode version:
11.0

Swift version:
5.1

Cartfile:

github "VirgilSecurity/virgil-sdk-x" == 5.8.0
github "VirgilSecurity/virgil-crypto-x" == 3.2.3

Error:

CompileSwift normal x86_64 (in target 'VirgilCrypto macOS' from project 'VirgilCrypto')
    cd /Users/ExampleApp/ios/Carthage/Checkouts/virgil-crypto-x
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c /Users/ExampleApp/ios/Carthage/Checkouts/virgil-crypto-x/VirgilCrypto/Source/Pythia/VirgilPythia.swift /Users/ExampleApp/ios/Carthage/Checkouts/virgil-crypto-x/VirgilCrypto/Source/Pythia/BlindResult.swift -emit-module-path /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/VirgilCrypto.swiftmodule -emit-module-doc-path /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/VirgilCrypto.swiftdoc -serialize-diagnostics-path /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/VirgilCrypto\ macOS-master.dia -emit-objc-header-path /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/VirgilCrypto-Swift.h -emit-dependencies-path /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/VirgilCrypto\ macOS-master.d -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/BuildProductsPath/Release -F /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/BuildProductsPath/Release -application-extension -g -import-underlying-module -module-cache-path /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/ModuleCache.noindex -swift-version 4.2 -enforce-exclusivity=checked -O -serialize-debugging-options -Xcc -working-directory -Xcc /Users/ExampleApp/ios/Carthage/Checkouts/virgil-crypto-x -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/VirgilCrypto-generated-files.hmap -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/VirgilCrypto-own-target-headers.hmap -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/VirgilCrypto-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/VirgilCrypto-project-headers.hmap -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/BuildProductsPath/Release/include -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/DerivedSources-normal/x86_64 -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/DerivedSources/x86_64 -Xcc -I/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/unextended-module-overlay.yaml -module-name VirgilCrypto -num-threads 8 -o /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/VirgilPythia.o -o /Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto\ macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VirgilCrypto\ macOS.build/Objects-normal/x86_64/BlindResult.o
/Users/Bryan/Library/Caches/org.carthage.CarthageKit/DerivedData/11.0_11A420a/virgil-crypto-x/3.2.3/Build/Intermediates.noindex/ArchiveIntermediates/VirgilCrypto macOS/IntermediateBuildFilesPath/VirgilCrypto.build/Release/VSCCrypto macOS.build/module.modulemap:2:10: error: header 'pythia/pythia_buf.h' not found
  header "pythia/pythia_buf.h"
         ^
/Users/ExampleApp/ios/Carthage/Checkouts/virgil-crypto-x/VirgilCrypto/Source/Pythia/VirgilPythia.swift:38:8: error: could not build Objective-C module 'VSCCrypto'
import VSCCrypto
       ^

** ARCHIVE FAILED **


The following build commands failed:
        CompileSwift normal x86_64
        CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
(2 failures)

Is this a problem due to Swift 5.1?

Virgil Decrypt Issue IOS

Bug Description

I am facing this issue when the data is received and sent so it is not decrypted so here are the terminal logs mentioned below.

PlatformException(decrypt-failed, The operation couldn’t be completed. (VirgilCryptoFoundation.FoundationError error -303.), unknown error, null)

Expected behavior
I want to decrypt the messages which I received and sent so they can be viewed in the view.

Screenshot 2023-01-07 at 7 49 52 PM

If you see the screenshot the messages are not decrypted and due to that, they are not viewed on the screen.

Devices Information

  • Device: iPhone 14 Pro, iPhone 13, iPhone 13 mini
  • Simulators: iPhone 14 Pro, iPhone 14 Pro Max
  • OS: IOS 16.2 and macOS Ventura
  • E3Kit Version

img

Additional context
On the receiver and sender end, the messages are not decrypted, and due to that, they are not appearing in the view!

Thank you!

Support for EC_SECP224K1 curve

Hi, Is it possible to add EC_SECP224K1 curve type? The C++ library has the support for this variant and I'm trying to add this curve in your wrapper. I am new to Cryptography and working with C++. I am struggling a lot in adding the support for this type of curve(EC_SECP224K1) in iOS. Your help/guidance will be much appreciated, Thanks.

Problems with arm64 architecture on XCode 12

Hi!

Into my project path '/Pods/VSCCrypto/Carthage/iOS/VSCCommon.framework/VSCCommon' I have a problem for architecture arm64 when compiling for simulator (no problem for devices).

This seems to be related to the new apple processors for mac. By now I'm using this workarround aws-amplify/aws-sdk-ios#2927 (comment) (executing in simulator with no problems). But your project should be granting compatibility to XCode 12 and new Macbooks when they get released.

Thank you,
Diego M.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.