Skip to content

Commit

Permalink
Merge pull request #24 from cryptography-cafe/last-minute-fixes
Browse files Browse the repository at this point in the history
Last minute fixes
  • Loading branch information
str4d committed May 20, 2019
2 parents 548dce2 + da675c4 commit ae5e4b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
`java-library`
`maven-publish`
signing
jacoco
id("me.champeau.gradle.jmh") version "0.4.8"
}
Expand Down Expand Up @@ -113,6 +114,10 @@ publishing {
}
}

signing {
sign(publishing.publications["mavenJava"])
}

tasks.jacocoTestReport {
reports {
xml.isEnabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
import cafe.cryptography.subtle.ConstantTime;

/**
* A Ristretto point in compressed wire format.
* A Ristretto element in compressed wire format.
* <p>
* The Ristretto encoding is canonical, so two points are equal if and only if
* The Ristretto encoding is canonical, so two elements are equal if and only if
* their encodings are equal.
*/
public class CompressedRistretto implements Serializable {
private static final long serialVersionUID = 1L;

/**
* The encoded point.
* The encoded element.
*/
private transient byte[] data;

Expand Down

0 comments on commit ae5e4b3

Please sign in to comment.