documentation

This commit is contained in:
Dave Grijalva 2014-08-26 15:30:37 -07:00
parent 2ef58916cc
commit 35c43501ff
2 changed files with 4 additions and 0 deletions

View File

@ -7,11 +7,13 @@ import (
"errors"
)
// Implements the HMAC-SHA family of signing methods signing methods
type SigningMethodHMAC struct {
Name string
Hash crypto.Hash
}
// Specific instances for HS256 and company
var (
SigningMethodHS256 *SigningMethodHMAC
SigningMethodHS384 *SigningMethodHMAC

2
rsa.go
View File

@ -6,11 +6,13 @@ import (
"crypto/rsa"
)
// Implements the RSA family of signing methods signing methods
type SigningMethodRSA struct {
Name string
Hash crypto.Hash
}
// Specific instances for RS256 and company
var (
SigningMethodRS256 *SigningMethodRSA
SigningMethodRS384 *SigningMethodRSA