Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ buildscript {
ext.versions = [

// Virgil
virgilCrypto : '0.17.2',
virgilCrypto : '0.19.0-rc.10',

// Common
commonsLang : '3.9',
Expand Down Expand Up @@ -139,7 +139,7 @@ final String BASE_VIRGIL_PACKAGE = 'com.virgilsecurity'
final String SDK_PACKAGE = BASE_VIRGIL_PACKAGE + '.sdk'

// Packages versions
final String SDK_VERSION = '7.4.0'
final String SDK_VERSION = '7.5.0'

group SDK_PACKAGE
version SDK_VERSION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static KeyPairType fromKey(Key key) throws CryptoException {

if (keyInfo.isCompound()) {
if (keyInfo.compoundHybridCipherFirstKeyAlgId() == AlgId.CURVE25519
&& keyInfo.compoundHybridCipherSecondKeyAlgId() == AlgId.ROUND5_ND_1CCA_5D
&& keyInfo.compoundHybridCipherSecondKeyAlgId() == AlgId.ML_KEM_768
&& keyInfo.compoundHybridSignerFirstKeyAlgId() == AlgId.ED25519
&& keyInfo.compoundHybridSignerSecondKeyAlgId() == AlgId.FALCON) {

Expand Down Expand Up @@ -251,7 +251,7 @@ Pair<AlgId, AlgId> getCipherKeysAlgIds() throws CryptoException {
case CURVE25519_ED25519:
return new Pair<>(AlgId.CURVE25519, AlgId.NONE);
case CURVE25519_ROUND5_ED25519_FALCON:
return new Pair<>(AlgId.CURVE25519, AlgId.ROUND5_ND_1CCA_5D);
return new Pair<>(AlgId.CURVE25519, AlgId.ML_KEM_768);
case CURVE25519:
case ED25519:
case RSA_2048:
Expand Down
Loading
Loading