Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
yubikey
=======

[![Build Status](https://travis-ci.org/conformal/yubikey.png?branch=master)]
(https://travis-ci.org/conformal/yubikey)
[![Build Status](https://travis-ci.org/conformal/yubikey.png?branch=master)](https://travis-ci.org/conformal/yubikey)

Package yubikey implements the [Yubico](http://www.yubico.com) [YubiKey](http://www.yubico.com/products/yubikey-hardware/) API.

Expand All @@ -12,7 +11,7 @@ The package needs to know the secret key of the YubiKey token; this
may be stored as a string. For example, the secret key could be
loaded from a file with:

```
```go
import (
"bytes"
"encoding/hex"
Expand Down Expand Up @@ -45,7 +44,7 @@ func LoadSecretKey(filename string) (*Key, error) {
Then, you can pass the OTP string directly from the YubiKey to
`ParseOTPString`:

```
```go
func GetToken(otpString string, priv *Key) (*Token, error) {
pub, otp, err := yubikey.ParseOTPString(otpString)
if err != nil {
Expand Down