1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
// Copyright (c) 2021 Oasis Labs Inc. All rights reserved.
// Copyright (c) 2021 Yawning Angel. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Package h2c implements the "Hashing to Elliptic Curves" IETF draft.
package h2c
import (
"crypto"
_ "crypto/sha512"
"fmt"
"filippo.io/edwards25519"
"filippo.io/edwards25519/field"
"golang.org/x/crypto/sha3"
"gitlab.com/yawning/edwards25519-extra/elligator2"
"gitlab.com/yawning/edwards25519-extra/internal/montgomery"
)
const (
ell = 48 // L = ceil((ceil(log2(2^255-19)) + k) / 8)
kay = 128 // k = target security level in bits
encodeToCurveSize = ell
hashToCurveSize = ell * 2
)
// Edwards25519_XMD_SHA512_ELL2_RO implements the edwards25519_XMD:SHA-512_ELL2_RO_
// suite.
func Edwards25519_XMD_SHA512_ELL2_RO(domainSeparator, message []byte) (*edwards25519.Point, error) {
return Edwards25519_XMD_ELL2_RO(crypto.SHA512, domainSeparator, message)
}
// Edwards25519_XMD_SHA512_ELL2_NU implements the edwards25519_XMD:SHA-512_ELL2_NU_
// suite.
func Edwards25519_XMD_SHA512_ELL2_NU(domainSeparator, message []byte) (*edwards25519.Point, error) {
return Edwards25519_XMD_ELL2_NU(crypto.SHA512, domainSeparator, message)
}
// Curve25519_XMD_SHA512_ELL2_RO implements the curve25519_XMD:SHA-512_ELL2_RO_
// suite.
func Curve25519_XMD_SHA512_ELL2_RO(domainSeparator, message []byte) (*field.Element, *field.Element, error) {
return Curve25519_XMD_ELL2_RO(crypto.SHA512, domainSeparator, message)
}
// Curve25519_XMD_SHA512_ELL2_NU implements the curve25519_XMD:SHA-512_ELL2_NU_
// suite.
func Curve25519_XMD_SHA512_ELL2_NU(domainSeparator, message []byte) (*field.Element, *field.Element, error) {
return Curve25519_XMD_ELL2_NU(crypto.SHA512, domainSeparator, message)
}
// Edwards25519_XMD_ELL2_RO implements a generic edwards25519 random oracle suite
// using `expand_message_xmd`.
func Edwards25519_XMD_ELL2_RO(hFunc crypto.Hash, domainSeparator, message []byte) (*edwards25519.Point, error) {
var uniformBytes [hashToCurveSize]byte
if err := ExpandMessageXMD(uniformBytes[:], hFunc, domainSeparator, message); err != nil {
return nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
return hashToCurveEdwards(&uniformBytes), nil
}
// Edwards25519_XMD_ELL2_NU implements a generic edwards25519 nonuniform suite
// using `expand_messsage_xmd`.
func Edwards25519_XMD_ELL2_NU(hFunc crypto.Hash, domainSeparator, message []byte) (*edwards25519.Point, error) {
var uniformBytes [encodeToCurveSize]byte
if err := ExpandMessageXMD(uniformBytes[:], hFunc, domainSeparator, message); err != nil {
return nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
return encodeToCurveEdwards(&uniformBytes), nil
}
// Edwards25519_XOF_ELL2_RO implements a generic edwards25519 random oracle suite
// using `expand_message_xof`.
func Edwards25519_XOF_ELL2_RO(xofFunc sha3.ShakeHash, domainSeparator, message []byte) (*edwards25519.Point, error) {
var uniformBytes [hashToCurveSize]byte
if err := ExpandMessageXOF(uniformBytes[:], xofFunc, domainSeparator, message); err != nil {
return nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
return hashToCurveEdwards(&uniformBytes), nil
}
// Edwards25519_XOF_ELL2_NU implements a generic edwards25519 nonuniform suite
// using `expand_messsage_xof`.
func Edwards25519_XOF_ELL2_NU(xofFunc sha3.ShakeHash, domainSeparator, message []byte) (*edwards25519.Point, error) {
var uniformBytes [encodeToCurveSize]byte
if err := ExpandMessageXOF(uniformBytes[:], xofFunc, domainSeparator, message); err != nil {
return nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
return encodeToCurveEdwards(&uniformBytes), nil
}
// Curve25519_XMD_ELL2_RO implements a generic curve25519 random oracle suite
// using `expand_message_xmd`, returning the u and v-coordinates.
func Curve25519_XMD_ELL2_RO(hFunc crypto.Hash, domainSeparator, message []byte) (*field.Element, *field.Element, error) {
var uniformBytes [hashToCurveSize]byte
if err := ExpandMessageXMD(uniformBytes[:], hFunc, domainSeparator, message); err != nil {
return nil, nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
u, v := hashToCurveMontgomery(&uniformBytes)
return u, v, nil
}
// Curve25519_XMD_ELL2_NU implements a generic curve25519 nonuniform suite
// using `expand_messsage_xmd`, returning the u and v-coordiantes.
func Curve25519_XMD_ELL2_NU(hFunc crypto.Hash, domainSeparator, message []byte) (*field.Element, *field.Element, error) {
var uniformBytes [encodeToCurveSize]byte
if err := ExpandMessageXMD(uniformBytes[:], hFunc, domainSeparator, message); err != nil {
return nil, nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
u, v := encodeToCurveMontgomery(&uniformBytes)
return u, v, nil
}
// Curve25519_XOF_ELL2_RO implements a generic curve25519 random oracle suite
// using `expand_message_xof`, returning the u and v-coordinates.
func Curve25519_XOF_ELL2_RO(xofFunc sha3.ShakeHash, domainSeparator, message []byte) (*field.Element, *field.Element, error) {
var uniformBytes [hashToCurveSize]byte
if err := ExpandMessageXOF(uniformBytes[:], xofFunc, domainSeparator, message); err != nil {
return nil, nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
u, v := hashToCurveMontgomery(&uniformBytes)
return u, v, nil
}
// Curve5519_XOF_ELL2_NU implements a generic curve25519 nonuniform suite
// using `expand_messsage_xof`, returning the u and v-coordinates.
func Curve25519_XOF_ELL2_NU(xofFunc sha3.ShakeHash, domainSeparator, message []byte) (*field.Element, *field.Element, error) {
var uniformBytes [encodeToCurveSize]byte
if err := ExpandMessageXOF(uniformBytes[:], xofFunc, domainSeparator, message); err != nil {
return nil, nil, fmt.Errorf("h2c: failed to expand message: %w", err)
}
u, v := encodeToCurveMontgomery(&uniformBytes)
return u, v, nil
}
func hashToCurveEdwards(uniformBytes *[hashToCurveSize]byte) *edwards25519.Point {
fe0 := uniformToField25519(uniformBytes[:ell])
fe1 := uniformToField25519(uniformBytes[ell:])
Q0 := elligator2.EdwardsFlavor(fe0)
Q1 := elligator2.EdwardsFlavor(fe1)
p := new(edwards25519.Point).Add(Q0, Q1)
return p.MultByCofactor(p)
}
func encodeToCurveEdwards(uniformBytes *[encodeToCurveSize]byte) *edwards25519.Point {
fe := uniformToField25519(uniformBytes[:])
Q := elligator2.EdwardsFlavor(fe)
return new(edwards25519.Point).MultByCofactor(Q)
}
func hashToCurveMontgomery(uniformBytes *[hashToCurveSize]byte) (*field.Element, *field.Element) {
p := hashToCurveEdwards(uniformBytes)
return montgomery.FromEdwardsPoint(p)
}
func encodeToCurveMontgomery(uniformBytes *[encodeToCurveSize]byte) (*field.Element, *field.Element) {
p := encodeToCurveEdwards(uniformBytes)
return montgomery.FromEdwardsPoint(p)
}
func uniformToField25519(b []byte) *field.Element {
if len(b) != ell {
panic("h2c: invalid uniform bytes length")
}
// Unlike curve25519-voi, edwards25519 implements a 512-bit reduction
// so zero-extend the big-endian input.
bExtended := make([]byte, 64-ell, 64)
bExtended = append(bExtended, b...)
// The wide-reduction routine wants little-endian, so do the byte-swap.
bLE := reversedByteSlice(bExtended)
fe, err := new(field.Element).SetWideBytes(bLE)
if err != nil {
panic("h2c: failed to decode wide field element: " + err.Error())
}
return fe
}
func reversedByteSlice(b []byte) []byte {
bLen := len(b)
if bLen == 0 {
return []byte{}
}
out := make([]byte, bLen)
for i, j := bLen-1, 0; i >= 0; i, j = i-1, j+1 {
out[j] = b[i]
}
return out
}
|