ethereum / ethereumj

DEPRECATED! Java implementation of the Ethereum yellowpaper. For JSON-RPC and other client features check Ethereum Harmony
GNU Lesser General Public License v3.0
2.18k stars 1.1k forks source link

Trivial signature aggregation #1190

Closed mkalinin closed 5 years ago

mkalinin commented 5 years ago

Abstract

Implement trivial algorithm of signature aggregation.

Requirements

The algorithm should be based on a trivial operation like XOR. The implementation must be as abstract as it should be to easily replace algorithm with a new one like BLS. Together with the aggregation it should, also, support aggregated signature check.

mkalinin commented 5 years ago

Addressed by https://github.com/ethereum/ethereumj/pull/1210