*
*/
- public AttributeQueryHandle(String handle, SecretKey key)
+ public AttributeQueryHandle(byte[] handle, SecretKey key)
throws HandleException {
try {
}
/**
- * Returns a <code>String</code> of ciphertext representing the <code>AttributeQueryHandle</code> instance.
+ * Returns bytes of ciphertext representing the <code>AttributeQueryHandle</code> instance.
*/
- public String serialize() {
+ public byte[] serialize() {
- return new String(Base64.encode(cipherTextHandle));
+ return Base64.encode(cipherTextHandle);
}
/**