Skip to content

Commit

Permalink
Branch out from latest master that has ARM NET test fixes, update lib…
Browse files Browse the repository at this point in the history
…raries to avoid security breaches
  • Loading branch information
rayshade authored and ww898 committed May 15, 2024
1 parent f511f1b commit 8f8ab55
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ repositories {
}

dependencies {
implementation("org.bouncycastle:bcprov-jdk15on:1.70")
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")
implementation("org.bouncycastle:bcutil-jdk15on:1.70")
implementation("org.bouncycastle:bcprov-jdk18on:1.78.1")
implementation("org.bouncycastle:bcpkix-jdk18on:1.78.1")
implementation("org.bouncycastle:bcutil-jdk18on:1.78.1")
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.3")
implementation("org.apache.commons:commons-compress:1.21")
implementation("org.apache.commons:commons-compress:1.26.1")

testImplementation("org.junit.jupiter:junit-jupiter-params:$junitVersion")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ internal class CMSSignedHelper {
while (en.hasMoreElements()) {
val obj = (en.nextElement() as ASN1Encodable).toASN1Primitive()
if (obj is ASN1TaggedObject) {
certList.add(X509AttributeCertificateHolder(AttributeCertificate.getInstance(obj.getObject())))
certList.add(X509AttributeCertificateHolder(AttributeCertificate.getInstance(obj.baseObject)))
}
}
return CollectionStore(certList)
Expand Down

0 comments on commit 8f8ab55

Please sign in to comment.