0

I am doing some research on IBM graph and couldn't find the type of encryption used at both rest and transit. Thanks in advance

rookie
  • 63
  • 1
  • 5

1 Answers1

2

IBM Graph's client-facing APIs are only available via HTTPS w/ modern TLS versions. On the backend, data at rest is encrypted via LUKS, and data in motion is encrypted via TLS.

  • Thanks a lot Benjamin. It seems that there is limited documentation for technical details on IBM graph. Would you happen to know if they implement any user authentication (Kerberos and Active Directory Integration)? Also, can we write stored procedures for IBM graph? – rookie Jun 29 '17 at 18:35
  • IBM Graph supports HTTP Basic Authentication and a token-based session implementation. Regarding stored procedures:: TinkerPop/Gremlin does not support a notion of stored procedures. – Benjamin Anderson Jun 30 '17 at 21:00