Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #591: Make tests compatible with latest PA server #592

Merged
merged 1 commit into from
Jun 5, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ public enum ServerVersion {
V1_4_0("1.4", 1004000, ProtocolVersion.V3_1),
V1_5_0("1.5", 1005000, ProtocolVersion.V3_2),
V1_6_0("1.6", 1006000, ProtocolVersion.V3_2),
V1_7_0("1.7", 1007000, ProtocolVersion.V3_2),
V1_8_0("1.8", 1008000, ProtocolVersion.V3_2),

;

/**
* Contains constant for the latest PowerAuth Server version.
*/
public static final ServerVersion LATEST = V1_6_0;
public static final ServerVersion LATEST = V1_8_0;

/**
* Server version represented as string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ typedef NS_ENUM(int, PowerAuthTestServerVersion) {
PATS_V1_3 = 10300, // V3.1 crypto + Activation OTP, applicationId as String
PATS_V1_4 = 10400, // V3.1 crypto + Activation OTP, applicationId as String
PATS_V1_5 = 10500, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
PATS_V1_6 = 10600, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
PATS_V1_7 = 10700, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
PATS_V1_8 = 10800, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
"1.4" : "v13",
"1.5" : "v15",
"1.6" : "v15",
"1.7" : "v15",
"1.8" : "v15",

"*" : "v15"
},
Expand Down
Loading