Searched refs:optionalEncryptedTopic (Results 1 – 2 of 2) sorted by relevance
145 Optional<EncryptedTopic> optionalEncryptedTopic = in testEncryption_success() local149 assertThat(optionalEncryptedTopic.isPresent()).isTrue(); in testEncryption_success()150 assertThat(optionalEncryptedTopic.get().getEncryptedTopic()).isNotEmpty(); in testEncryption_success()151 assertThat(optionalEncryptedTopic.get().getKeyIdentifier()).isEqualTo(PUBLIC_KEY_BASE64); in testEncryption_success()152 assertThat(optionalEncryptedTopic.get().getEncapsulatedKey()).isNotEmpty(); in testEncryption_success()157 optionalEncryptedTopic.get().getEncapsulatedKey(), in testEncryption_success()158 optionalEncryptedTopic.get().getEncryptedTopic()); in testEncryption_success()180 Optional<EncryptedTopic> optionalEncryptedTopic = in testEncryption_verifyLatestKeys() local184 assertThat(optionalEncryptedTopic.isPresent()).isTrue(); in testEncryption_verifyLatestKeys()185 assertThat(optionalEncryptedTopic.get().getEncryptedTopic()).isNotEmpty(); in testEncryption_verifyLatestKeys()[all …]
451 Optional<EncryptedTopic> optionalEncryptedTopic = in encryptTopicsMap() local454 if (optionalEncryptedTopic.isPresent()) { in encryptTopicsMap()455 encryptedTopicMap.put(entry.getKey(), optionalEncryptedTopic.get()); in encryptTopicsMap()