164 lines
4.2 KiB
JavaScript
164 lines
4.2 KiB
JavaScript
|
const { sodium_memzero, sodium_memcmp } = require('./')
|
||
|
const ec = require('./fe25519_25')
|
||
|
const {
|
||
|
crypto_hash_sha512, crypto_hash_sha512_update,
|
||
|
crypto_hash_sha512_state, crypto_hash_sha512_final
|
||
|
} = require('./crypto_hash.js')
|
||
|
const { crypto_verify_32 } = require('./crypto_verify')
|
||
|
|
||
|
var crypto_sign_ed25519_BYTES = 64
|
||
|
var crypto_sign_ed25519_SEEDBYTES = 32
|
||
|
var crypto_sign_ed25519_PUBLICKEYBYTES = 32
|
||
|
var crypto_sign_ed25519_SECRETKEYBYTES = 64
|
||
|
var crypto_sign_ed25519_MESSAGEBYTES_MAX = Number.MAX_SAFE_INTEGER
|
||
|
|
||
|
function _crypto_sign_ed25519_ref10_hinit (hs, prehashed) {
|
||
|
const DOM2PREFIX = Buffer.from('SigEd25519 no Ed25519 collisions ')
|
||
|
DOM2PREFIX[30] = 1
|
||
|
DOM2PREFIX[31] = 0
|
||
|
|
||
|
if (prehashed) {
|
||
|
crypto_hash_sha512_update(hs, DOM2PREFIX, DOM2PREFIX.byteLength)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function _crypto_sign_ed25519_clamp (k) {
|
||
|
k[0] &= 248
|
||
|
k[31] &= 127
|
||
|
k[31] |= 64
|
||
|
}
|
||
|
|
||
|
function _crypto_sign_ed25519_detached (sig, m, mlen, sk, prehashed) {
|
||
|
var state = crypto_hash_sha512_state()
|
||
|
var az = Buffer.alloc(64)
|
||
|
var nonce = Buffer.alloc(64)
|
||
|
var hram = Buffer.alloc(64)
|
||
|
var R = ec.ge3()
|
||
|
|
||
|
_crypto_sign_ed25519_ref10_hinit(state, prehashed)
|
||
|
|
||
|
crypto_hash_sha512(az, sk, 32)
|
||
|
crypto_hash_sha512_update(state, az.subarray(32), 32)
|
||
|
crypto_hash_sha512_update(state, m, mlen)
|
||
|
crypto_hash_sha512_final(state, nonce)
|
||
|
|
||
|
sig.set(sk.subarray(32, 64), 32)
|
||
|
|
||
|
ec.sc25519_reduce(nonce)
|
||
|
ec.ge25519_scalarmult_base(R, nonce)
|
||
|
ec.ge25519_p3_tobytes(sig, R)
|
||
|
|
||
|
state = crypto_hash_sha512_state()
|
||
|
_crypto_sign_ed25519_ref10_hinit(state, prehashed)
|
||
|
crypto_hash_sha512_update(state, sig, 64)
|
||
|
crypto_hash_sha512_update(state, m, mlen)
|
||
|
crypto_hash_sha512_final(state, hram)
|
||
|
|
||
|
ec.sc25519_reduce(hram)
|
||
|
_crypto_sign_ed25519_clamp(az)
|
||
|
ec.sc25519_muladd(sig.subarray(32), hram, az, nonce)
|
||
|
|
||
|
sodium_memzero(az)
|
||
|
sodium_memzero(nonce)
|
||
|
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
function crypto_sign_ed25519_detached (sig, m, mlen, sk) {
|
||
|
return _crypto_sign_ed25519_detached(sig, m, mlen, sk, 0)
|
||
|
}
|
||
|
|
||
|
function crypto_sign_ed25519 (sm, m, mlen, sk) {
|
||
|
var siglen
|
||
|
|
||
|
sm.set(m.subarray(0, mlen), crypto_sign_ed25519_BYTES)
|
||
|
|
||
|
/* LCOV_EXCL_START */
|
||
|
if (crypto_sign_ed25519_detached(sm, sm.subarray(crypto_sign_ed25519_BYTES), mlen, sk) !== 0) {
|
||
|
sm.fill(0, mlen + crypto_sign_ed25519_BYTES)
|
||
|
return -1
|
||
|
}
|
||
|
/* LCOV_EXCL_STOP */
|
||
|
return m.byteLength + 64
|
||
|
}
|
||
|
|
||
|
function crypto_sign (sm, m, sk) {
|
||
|
return crypto_sign_ed25519(sm, m, m.byteLength, sk)
|
||
|
}
|
||
|
|
||
|
function _crypto_sign_ed25519_verify_detached(sig, m, mlen, pk, prehashed) {
|
||
|
var hs = crypto_hash_sha512_state()
|
||
|
var h = Buffer.alloc(64)
|
||
|
var rcheck = Buffer.alloc(32)
|
||
|
var A = ec.ge3()
|
||
|
var R = ec.ge2()
|
||
|
|
||
|
// #ifdef ED25519_COMPAT
|
||
|
if (sig[63] & 224) {
|
||
|
return -1
|
||
|
}
|
||
|
// #else
|
||
|
// if ((sig[63] & 240) &&
|
||
|
// sc25519_is_canonical(sig + 32) == 0) {
|
||
|
// return -1;
|
||
|
// }
|
||
|
// if (ge25519_has_small_order(sig) != 0) {
|
||
|
// return -1;
|
||
|
// }
|
||
|
// if (ge25519_is_canonical(pk) == 0 ||
|
||
|
// ge25519_has_small_order(pk) != 0) {
|
||
|
// return -1;
|
||
|
// }
|
||
|
// #endif
|
||
|
if (ec.ge25519_frombytes_negate_vartime(A, pk) !== 0) {
|
||
|
return -1
|
||
|
}
|
||
|
ec.ge25519_tobytes(rcheck, A)
|
||
|
|
||
|
_crypto_sign_ed25519_ref10_hinit(hs, prehashed)
|
||
|
crypto_hash_sha512_update(hs, sig, 32)
|
||
|
crypto_hash_sha512_update(hs, pk, 32)
|
||
|
crypto_hash_sha512_update(hs, m, mlen)
|
||
|
crypto_hash_sha512_final(hs, h)
|
||
|
ec.sc25519_reduce(h)
|
||
|
|
||
|
ec.ge25519_double_scalarmult_vartime(R, h, A, sig.subarray(32))
|
||
|
ec.ge25519_tobytes(rcheck, R)
|
||
|
|
||
|
return crypto_verify_32(rcheck, 0, sig, 0) | sodium_memcmp(sig.subarray(0, 32), rcheck.subarray(0, 32))
|
||
|
}
|
||
|
|
||
|
function crypto_sign_ed25519_verify_detached (sig, m, mlen, pk) {
|
||
|
return _crypto_sign_ed25519_verify_detached(sig, m, mlen, pk, 0);
|
||
|
}
|
||
|
|
||
|
function crypto_sign_ed25519_open (m, sm, pk) {
|
||
|
var mlen = 0
|
||
|
|
||
|
if (sm.byteLength < 64 || sm.byteLength - 64 > crypto_sign_ed25519_MESSAGEBYTES_MAX) {
|
||
|
throw new Error('Bad signature.')
|
||
|
}
|
||
|
|
||
|
mlen = sm.byteLength - 64
|
||
|
|
||
|
if (!crypto_sign_ed25519_verify_detached(sm, sm.subarray(64), mlen, pk)) {
|
||
|
if (m.byteLength) m.fill(0)
|
||
|
throw new Error('Bad signature.')
|
||
|
}
|
||
|
|
||
|
if (m.byteLength) {
|
||
|
m.set(sm.subarray(64))
|
||
|
}
|
||
|
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
function crypto_sign_open (m, sm, pk) {
|
||
|
return crypto_sign_ed25519_open(m, sm, pk)
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
crypto_sign,
|
||
|
crypto_sign_open
|
||
|
}
|