Home

Awesome

Virgil Pythia Go SDK

Build Status GitHub license

Introduction | SDK Features | Install and configure SDK | Usage Examples | Docs | Support

Introduction

<a href="https://developer.virgilsecurity.com/docs"><img width="230px" src="https://cdn.virgilsecurity.com/assets/images/github/logos/virgil-logo-red.png" align="left" hspace="10" vspace="6"></a>Virgil Security provides an SDK which allows you to communicate with Virgil Pythia Service and implement Pythia protocol for the following use cases:

In both cases you get the mechanism which assures you that neither Virgil nor attackers know anything about user's password.

SDK Features

Install and configure SDK

The Virgil Pythia Go SDK is provided as a package named virgil-pythia-go. The package is distributed via GitHub. The package is available for Go 1.10 or newer.

Install SDK Package

Virgil Pythia SDK uses the Virgil Crypto library to perform cryptographic operations. The Virgil Pythia Go SDK is provided as a package named virgil-pythia-go. The package is distributed via GitHub. The package is available for Go 1.10 or newer.

Step #1. Install a Crypto Library (C++)

There two ways to install the Crypto Library:

The first, if you are building from sources, install prerequisites as described here and then install the library:

go get -u -d gopkg.in/virgilsecurity/virgil-crypto-go.v5
cd $(go env GOPATH)/src/gopkg.in/virgilsecurity/virgil-crypto-go.v5
make

The second, if you use Linux x64 or Darwin x64 architecture, you can use the pre-built crypto binaries for Linux:

CRYPTO_LIB=virgil-crypto-2.4.4-go-linux-x86_64.tgz

or for MacOS:

CRYPTO_LIB=virgil-crypto-2.4.4-go-darwin-17.5-x86_64.tgz

and then install the library:

go get -u -d gopkg.in/virgilsecurity/virgil-crypto-go.v5
wget https://cdn.virgilsecurity.com/virgil-crypto/go/$CRYPTO_LIB
tar -xvf $CRYPTO_LIB --strip-components=1 -C $(go env GOPATH)/src/gopkg.in/virgilsecurity/virgil-crypto-go.v5/

Step #2. Installing Virgil Pythia Go package

Install Pythia SDK library with the following code:

go get -u github.com/VirgilSecurity/virgil-pythia-go

Configure SDK

When you create a Pythia Application on the Virgil Dashboard you will receive Application credentials including: Proof Key and App ID. Specify your Pythia Application and Virgil account credentials in a Pythia SDK class instance. These credentials are used for the following purposes:

Here is an example of how to specify your credentials SDK class instance:

package main

import (
  "github.com/VirgilSecurity/virgil-pythia-go"
)


func main() {
  // here set your Virgil account and Pythia Application credentials
  ctx, err := pythia.CreateContext("API_KEY", "API_KEY_ID", "APP_ID", "PK.1.PROOF_KEY")
  if err != nil{
    panic(err)
  }

  pythia := pythia.New(ctx)
}

Usage Examples

Breach-proof password

Virgil Pythia SDK lets you easily perform all the necessary operations to create, verify and update user's breach-proof password without requiring any additional actions and use Virgil Crypto library.

First of all, you need to set up your database to store users' breach-proof passwords. Create additional columns in your database for storing the following parameters:

<table class="params"> <thead> <tr> <th>Parameters</th> <th>Type</th> <th>Size (bytes)</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>salt</td> <td>blob</td> <td>32</td> <td> Unique random string that is generated by Pythia SDK for each user</td> </tr> <tr> <td>deblindedPassword</td> <td>blob </td> <td>384 </td> <td>user's breach-proof password</td> </tr> <tr> <td>version</td> <td>int </td> <td>4 </td> <td>Version of your Pythia Application credentials. This parameter has the same value for all users unless you generate new Pythia credentials on Virgil Dashboard</td> </tr> </tbody> </table>

Now we can start creating breach-proof passwords for users. Depending on the situation, you will use one of the following Pythia SDK functions:

Create Breach-Proof Password

Use this flow to create a new breach-proof password for a user.

Remember, if you already have a database with user passwords, you don't have to wait until a user logs in into your system to implement Pythia. You can go through your database and create breach-proof user passwords at any time.

So, in order to create a user's breach-proof password for a new database or available one, go through the following operations:

// create a new Breach-proof password using user's password or its hash
pwd, err := pythia.CreateBreachProofPassword("USER_PASSWORD")

if err != nil{
panic(err)
}
// save Breach-proof password parameters into your users DB
fmt.Println(pwd.Salt, pwd.DeblindedPassword, pwd.Version)

After performing CreateBreachProofPassword function you get previously mentioned parameters (Salt, deblindedPassword, version), save these parameters into corresponding columns in your database.

Check that you updated all database records and delete the now unnecessary column where user passwords were previously stored.

Verify Breach-Proof Password

Use this flow on Server side when a user already has his or her own breach-proof password in your database. You will have to pass his or her password into an VerifyBreachProofPassword function:

//get user's Breach-proof password parameters from your users DB

...
// calculate user's Breach-proof password parameters
// compare these parameters with parameters from your DB
err = pythia.VerifyBreachProofPassword("USER_PASSWORD", pwd, false)

if err != nil{
//authentication failed ot throttle reached
}

The difference between the VerifyBreachProofPassword and CreateBreachProofPassword functions is that the verification of Pythia Service is optional in VerifyBreachProofPassword function, which allows you to achieve maximum performance when processing data. You can turn on a proof step in VerifyBreachProofPassword function if you have any suspicions that a user or Pythia Service were compromised.

Update breach-proof passwords

This step will allow you to use an updateToken in order to update users' breach-proof passwords in your database.

Use this flow only if your database was COMPROMISED.

How it works:

Here is an example of using the UpdateBreachProofPassword function:

//get previous user's VerifyBreachProofPassword parameters from a compromised DB

...

// set up an updateToken that you got on the Virgil Dashboard
// update previous user's deblindedPassword and version, and save new one into your DB
updatedPwd, err := pythia.UpdateBreachProofPassword("UT.1.2.UPDATE_TOKEN", pwd)
fmt.Println(updatedPwd.DeblindedPassword, updatedPwd.Version)

BrainKey

PYTHIA Service can be used directly as a means to generate strong cryptographic keys based on user's password or other secret data. We call these keys the BrainKeys. Thus, when you need to restore a Private Key you use only user's Password and Pythia Service.

In order to create a user's BrainKey, go through the following operations:

Generate BrainKey based on user's password

package main

import (
    "github.com/VirgilSecurity/pythia-go"
    "gopkg.in/virgilsecurity/virgil-crypto-go.v5"
    "gopkg.in/virgil.v5/sdk"
    "time"
    "fmt"
)

func main(){

    // Initialize and create an instance of BrainKey class
    ctx, err := pythia.CreateBrainKeyContext(accessTokenProvider)
    if err != nil {
        panic(err)
    }
    brainkey := pythia.NewBrainKey(ctx)

    // Generate default public/private keypair which is Curve ED25519
    // If you need to generate several BrainKeys for the same password,
    // use different IDs.
    keypair, err := brainkey.GenerateKeypair("Your password","Optional BrainKey id")
    if err != nil {
        panic(err)
    }

}

Generate BrainKey based on unique URL

The typical BrainKey implementation uses a password or concatenated answers to security questions to regenerate the user’s private key. But a unique session link generated by the system admin can also do the trick.

This typically makes the most sense for situations where it’s burdensome to require a password each time a user wants to send or receive messages, like single-session chats in a browser application.

Here’s the general flow of how BrainKey can be used to regenerate a private key based on a unique URL:

Important notes for implementation:

...
    keypair, err := brainkey.GenerateKeypair("abcdef13803488","Optional User SSN")
    if err != nil {
        panic(err)
    }

    }
...

Note! if you don't need to use additional parameters, like "Optional User SSN", you can just omit it: keypair, err := brainkey.GenerateKeypair("abcdef13803488")

Docs

Virgil Security has a powerful set of APIs, and the documentation below can get you started today.

License

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

Support

Our developer support team is here to help you. Find out more information on our Help Center.

You can find us on Twitter or send us email support@VirgilSecurity.com.

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