Skip to content

rogercoll/rsignatures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Test

Ring Signatures

Experimental library: use it at your own risk

In cryptography, a ring signature is a type of digital signature that can be performed by any member of a group of users that each have keys. Therefore, a message signed with a ring signature is endorsed by someone in a particular group of people. One of the security properties of a ring signature is that it should be computationally infeasible to determine which of the group members' keys was used to produce the signature. - Moneropedia

Status

Usage (example)

	...
	//Create RSA ring
	rsaRing := rsignatures.NewRSARing(partyKeys, signerKey)
	seed, sig, err := rsaRing.Sign([]byte("hello"), signerRound)
	if err != nil {
		log.Fatal(err)
	}

	//Verify signature
	log.Println(rsaRing.Verify([]byte("hello"), seed, sig))
	...

Full example.

About

Ring Signatures implementation in Go

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages