Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

154 wiersze
4.2 KiB

  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package acme
  5. import (
  6. "crypto"
  7. "crypto/ecdsa"
  8. "crypto/rand"
  9. "crypto/rsa"
  10. "crypto/sha256"
  11. _ "crypto/sha512" // need for EC keys
  12. "encoding/base64"
  13. "encoding/json"
  14. "fmt"
  15. "math/big"
  16. )
  17. // jwsEncodeJSON signs claimset using provided key and a nonce.
  18. // The result is serialized in JSON format.
  19. // See https://tools.ietf.org/html/rfc7515#section-7.
  20. func jwsEncodeJSON(claimset interface{}, key crypto.Signer, nonce string) ([]byte, error) {
  21. jwk, err := jwkEncode(key.Public())
  22. if err != nil {
  23. return nil, err
  24. }
  25. alg, sha := jwsHasher(key)
  26. if alg == "" || !sha.Available() {
  27. return nil, ErrUnsupportedKey
  28. }
  29. phead := fmt.Sprintf(`{"alg":%q,"jwk":%s,"nonce":%q}`, alg, jwk, nonce)
  30. phead = base64.RawURLEncoding.EncodeToString([]byte(phead))
  31. cs, err := json.Marshal(claimset)
  32. if err != nil {
  33. return nil, err
  34. }
  35. payload := base64.RawURLEncoding.EncodeToString(cs)
  36. hash := sha.New()
  37. hash.Write([]byte(phead + "." + payload))
  38. sig, err := jwsSign(key, sha, hash.Sum(nil))
  39. if err != nil {
  40. return nil, err
  41. }
  42. enc := struct {
  43. Protected string `json:"protected"`
  44. Payload string `json:"payload"`
  45. Sig string `json:"signature"`
  46. }{
  47. Protected: phead,
  48. Payload: payload,
  49. Sig: base64.RawURLEncoding.EncodeToString(sig),
  50. }
  51. return json.Marshal(&enc)
  52. }
  53. // jwkEncode encodes public part of an RSA or ECDSA key into a JWK.
  54. // The result is also suitable for creating a JWK thumbprint.
  55. // https://tools.ietf.org/html/rfc7517
  56. func jwkEncode(pub crypto.PublicKey) (string, error) {
  57. switch pub := pub.(type) {
  58. case *rsa.PublicKey:
  59. // https://tools.ietf.org/html/rfc7518#section-6.3.1
  60. n := pub.N
  61. e := big.NewInt(int64(pub.E))
  62. // Field order is important.
  63. // See https://tools.ietf.org/html/rfc7638#section-3.3 for details.
  64. return fmt.Sprintf(`{"e":"%s","kty":"RSA","n":"%s"}`,
  65. base64.RawURLEncoding.EncodeToString(e.Bytes()),
  66. base64.RawURLEncoding.EncodeToString(n.Bytes()),
  67. ), nil
  68. case *ecdsa.PublicKey:
  69. // https://tools.ietf.org/html/rfc7518#section-6.2.1
  70. p := pub.Curve.Params()
  71. n := p.BitSize / 8
  72. if p.BitSize%8 != 0 {
  73. n++
  74. }
  75. x := pub.X.Bytes()
  76. if n > len(x) {
  77. x = append(make([]byte, n-len(x)), x...)
  78. }
  79. y := pub.Y.Bytes()
  80. if n > len(y) {
  81. y = append(make([]byte, n-len(y)), y...)
  82. }
  83. // Field order is important.
  84. // See https://tools.ietf.org/html/rfc7638#section-3.3 for details.
  85. return fmt.Sprintf(`{"crv":"%s","kty":"EC","x":"%s","y":"%s"}`,
  86. p.Name,
  87. base64.RawURLEncoding.EncodeToString(x),
  88. base64.RawURLEncoding.EncodeToString(y),
  89. ), nil
  90. }
  91. return "", ErrUnsupportedKey
  92. }
  93. // jwsSign signs the digest using the given key.
  94. // It returns ErrUnsupportedKey if the key type is unknown.
  95. // The hash is used only for RSA keys.
  96. func jwsSign(key crypto.Signer, hash crypto.Hash, digest []byte) ([]byte, error) {
  97. switch key := key.(type) {
  98. case *rsa.PrivateKey:
  99. return key.Sign(rand.Reader, digest, hash)
  100. case *ecdsa.PrivateKey:
  101. r, s, err := ecdsa.Sign(rand.Reader, key, digest)
  102. if err != nil {
  103. return nil, err
  104. }
  105. rb, sb := r.Bytes(), s.Bytes()
  106. size := key.Params().BitSize / 8
  107. if size%8 > 0 {
  108. size++
  109. }
  110. sig := make([]byte, size*2)
  111. copy(sig[size-len(rb):], rb)
  112. copy(sig[size*2-len(sb):], sb)
  113. return sig, nil
  114. }
  115. return nil, ErrUnsupportedKey
  116. }
  117. // jwsHasher indicates suitable JWS algorithm name and a hash function
  118. // to use for signing a digest with the provided key.
  119. // It returns ("", 0) if the key is not supported.
  120. func jwsHasher(key crypto.Signer) (string, crypto.Hash) {
  121. switch key := key.(type) {
  122. case *rsa.PrivateKey:
  123. return "RS256", crypto.SHA256
  124. case *ecdsa.PrivateKey:
  125. switch key.Params().Name {
  126. case "P-256":
  127. return "ES256", crypto.SHA256
  128. case "P-384":
  129. return "ES384", crypto.SHA384
  130. case "P-521":
  131. return "ES512", crypto.SHA512
  132. }
  133. }
  134. return "", 0
  135. }
  136. // JWKThumbprint creates a JWK thumbprint out of pub
  137. // as specified in https://tools.ietf.org/html/rfc7638.
  138. func JWKThumbprint(pub crypto.PublicKey) (string, error) {
  139. jwk, err := jwkEncode(pub)
  140. if err != nil {
  141. return "", err
  142. }
  143. b := sha256.Sum256([]byte(jwk))
  144. return base64.RawURLEncoding.EncodeToString(b[:]), nil
  145. }