mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-09 18:29:39 +02:00
We had to rework the HardwareSecurity decryptor factory classes, which now take a PKESK version as additional argument Further, we had to remove support for generating secp256k1 EC keys. Lastly, parsing One-Pass-Signatures of unsupported versions in BC now throws, so we had to introduce a respective catch block.
19 lines
516 B
Groovy
19 lines
516 B
Groovy
// SPDX-FileCopyrightText: 2021 Paul Schaub <info@pgpainless.org>
|
|
//
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
allprojects {
|
|
ext {
|
|
shortVersion = '1.6.9'
|
|
isSnapshot = true
|
|
pgpainlessMinAndroidSdk = 10
|
|
javaSourceCompatibility = 1.8
|
|
bouncyCastleVersion = '1.80'
|
|
bouncyPgVersion = bouncyCastleVersion
|
|
junitVersion = '5.8.2'
|
|
logbackVersion = '1.2.13'
|
|
mockitoVersion = '4.5.1'
|
|
slf4jVersion = '1.7.36'
|
|
sopJavaVersion = '7.0.2'
|
|
}
|
|
}
|