mirror of
https://github.com/google/nomulus
synced 2026-01-10 16:00:52 +00:00
Store encrypted file in Base64 encoding
It is better to store it ASCII armored so that it can be easily diffed to see if a file has changed ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=200045488
This commit is contained in:
@@ -49,6 +49,7 @@ import io.netty.handler.ssl.SslProvider;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
import java.util.Base64;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
@@ -249,7 +250,7 @@ public class ProxyModule {
|
||||
.objects()
|
||||
.get(config.gcs.bucket, config.gcs.sslPemFilename)
|
||||
.executeMediaAndDownloadTo(outputStream);
|
||||
return outputStream.toByteArray();
|
||||
return Base64.getMimeDecoder().decode(outputStream.toByteArray());
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(
|
||||
String.format(
|
||||
|
||||
Reference in New Issue
Block a user