// OpenSshUtils.serialize(sshPublicKey);
}
KeyPairData created = keypairs.create(getProject(), request.keypair.name, sshPublicKey);
WrappedKeypair response = new WrappedKeypair();
response.keypair = toModel(created);
if (privateKey != null) {
response.keypair.privateKey = KeyczarUtils.toPem(privateKey);
}