Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
ROBERT Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
24
Issues
24
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TousAntiCovid sources
ROBERT Server
Commits
c6a0a564
Commit
c6a0a564
authored
Jun 29, 2020
by
Redford StopCovid
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release/v1.1.1' into 'develop'
Merge back Release/v1.1.1 See merge request
!69
parents
e9119c35
5bbeabd0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
9 deletions
+0
-9
robert-crypto-grpc-server/src/main/java/fr/gouv/stopc/robert/crypto/grpc/server/service/ICryptoServerConfigurationService.java
...rpc/server/service/ICryptoServerConfigurationService.java
+0
-1
robert-crypto-grpc-server/src/main/java/fr/gouv/stopc/robert/crypto/grpc/server/service/impl/CryptoGrpcServiceBaseImpl.java
...o/grpc/server/service/impl/CryptoGrpcServiceBaseImpl.java
+0
-2
robert-crypto-grpc-server/src/main/java/fr/gouv/stopc/robert/crypto/grpc/server/service/impl/CryptoServerConfigurationServiceImpl.java
...er/service/impl/CryptoServerConfigurationServiceImpl.java
+0
-1
robert-crypto-grpc-server/src/test/java/test/fr/gouv/stopc/robert/crypto/grpc/server/CryptoServiceGrpcServerTest.java
...obert/crypto/grpc/server/CryptoServiceGrpcServerTest.java
+0
-2
robert-server-batch/src/main/resources/application.properties
...rt-server-batch/src/main/resources/application.properties
+0
-1
robert-server-common/src/main/java/fr/gouv/stopc/robert/server/common/utils/TimeUtils.java
...a/fr/gouv/stopc/robert/server/common/utils/TimeUtils.java
+0
-1
robert-server-ws-rest/src/main/java/fr/gouv/stopc/robertserver/ws/service/impl/AuthRequestValidationServiceImpl.java
...ver/ws/service/impl/AuthRequestValidationServiceImpl.java
+0
-1
No files found.
robert-crypto-grpc-server/src/main/java/fr/gouv/stopc/robert/crypto/grpc/server/service/ICryptoServerConfigurationService.java
View file @
c6a0a564
...
...
@@ -2,7 +2,6 @@ package fr.gouv.stopc.robert.crypto.grpc.server.service;
public
interface
ICryptoServerConfigurationService
{
/**
* TpStart in NTP seconds
*
...
...
robert-crypto-grpc-server/src/main/java/fr/gouv/stopc/robert/crypto/grpc/server/service/impl/CryptoGrpcServiceBaseImpl.java
View file @
c6a0a564
...
...
@@ -414,7 +414,6 @@ public class CryptoGrpcServiceBaseImpl extends CryptoGrpcServiceImplImplBase {
true
,
false
,
enableEpochOverlapping
,
adjacentEpochMatchEnum
);
}
else
{
return
manageEBIDDecryptRetry
(
ebid
,
authRequestEpoch
,
...
...
@@ -452,7 +451,6 @@ public class CryptoGrpcServiceBaseImpl extends CryptoGrpcServiceImplImplBase {
switch
(
adjacentEpochMatchEnum
)
{
case
PREVIOUS:
log
.
warn
(
"Retrying ebid decrypt with previous epoch"
);
return
decryptEBIDAndCheckEpoch
(
ebid
,
authRequestEpoch
-
1
,
false
,
false
,
false
,
AdjacentEpochMatchEnum
.
NONE
);
case
NEXT:
log
.
warn
(
"Retrying ebid decrypt with next epoch"
);
...
...
robert-crypto-grpc-server/src/main/java/fr/gouv/stopc/robert/crypto/grpc/server/service/impl/CryptoServerConfigurationServiceImpl.java
View file @
c6a0a564
...
...
@@ -19,7 +19,6 @@ import fr.gouv.stopc.robert.server.common.utils.TimeUtils;
@Service
public
class
CryptoServerConfigurationServiceImpl
implements
ICryptoServerConfigurationService
{
private
long
timeStartNtp
;
private
final
PropertyLoader
propertyLoader
;
...
...
robert-crypto-grpc-server/src/test/java/test/fr/gouv/stopc/robert/crypto/grpc/server/CryptoServiceGrpcServerTest.java
View file @
c6a0a564
...
...
@@ -1487,7 +1487,6 @@ class CryptoServiceGrpcServerTest {
// when(this.cryptographicStorageService.getServerKey(epochId, time, true)).thenReturn(serverKeys[1]);
when
(
this
.
cryptographicStorageService
.
getFederationKey
()).
thenReturn
(
this
.
federationKey
);
byte
[]
mac
;
byte
[]
ecc
;
try
{
...
...
@@ -1662,7 +1661,6 @@ class CryptoServiceGrpcServerTest {
return
;
}
// Given
GetInfoFromHelloMessageRequest
request
=
GetInfoFromHelloMessageRequest
.
newBuilder
()
...
...
robert-server-batch/src/main/resources/application.properties
View file @
c6a0a564
...
...
@@ -40,4 +40,3 @@ robert.protocol.hello-message-timestamp-tolerance=${ROBERT_PROTOCOL_HELLO_TOLERA
robert.server.country-code
=
${ROBERT_SERVER_COUNTRY_CODE:0x21}
robert.protocol.contagious-period
=
${ROBERT_PROTOCOL_CONTAGIOUS_PERIOD:14}
robert-server-common/src/main/java/fr/gouv/stopc/robert/server/common/utils/TimeUtils.java
View file @
c6a0a564
...
...
@@ -121,6 +121,5 @@ public final class TimeUtils {
}
}
return
false
;
}
}
robert-server-ws-rest/src/main/java/fr/gouv/stopc/robertserver/ws/service/impl/AuthRequestValidationServiceImpl.java
View file @
c6a0a564
...
...
@@ -15,7 +15,6 @@ import com.google.protobuf.ByteString;
import
fr.gouv.stopc.robert.crypto.grpc.server.client.service.ICryptoServerGrpcClient
;
import
fr.gouv.stopc.robert.crypto.grpc.server.messaging.*
;
import
fr.gouv.stopc.robert.server.common.DigestSaltEnum
;
import
fr.gouv.stopc.robert.server.common.service.IServerConfigurationService
;
import
fr.gouv.stopc.robert.server.common.utils.ByteUtils
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment