-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #854 from mziccard/signing-auth-interface
Add ServiceAccountSigner interface, enable signing for AE credentials
- Loading branch information
Showing
7 changed files
with
268 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
gcloud-java-core/src/main/java/com/google/gcloud/ServiceAccountSigner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright 2016 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.gcloud; | ||
|
||
import java.util.Objects; | ||
|
||
/** | ||
* Interface for a service account signer. A signer for a service account is capable of signing | ||
* bytes using the private key associated with its service account. | ||
*/ | ||
public interface ServiceAccountSigner { | ||
|
||
class SigningException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 8962780757822799255L; | ||
|
||
SigningException(String message, Exception cause) { | ||
super(message, cause); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (obj == this) { | ||
return true; | ||
} | ||
if (!(obj instanceof SigningException)) { | ||
return false; | ||
} | ||
SigningException other = (SigningException) obj; | ||
return Objects.equals(getCause(), other.getCause()) | ||
&& Objects.equals(getMessage(), other.getMessage()); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getMessage(), getCause()); | ||
} | ||
} | ||
|
||
/** | ||
* Returns the service account associated with the signer. | ||
*/ | ||
String account(); | ||
|
||
/** | ||
* Signs the provided bytes using the private key associated with the service account. | ||
* | ||
* @param toSign bytes to sign | ||
* @return signed bytes | ||
* @throws SigningException if the attempt to sign the provided bytes failed | ||
*/ | ||
byte[] sign(byte[] toSign); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.