julio
julio

Reputation: 6748

digest authentication with secret / public key

I'm working on providing some data to clients via API and have been examining various ways to authenticate requests. It looks like digest authentication will be the best route, since I can't be sure that the server will offer SSL, and there's no need for serious security.

I've worked (as a client) with plenty of APIs in the past including:

Is there a general method to how these systems work? Is there a name for this technique, or is this some variant on digest authentication?

Thanks

Upvotes: 0

Views: 379

Answers (1)

wallyk
wallyk

Reputation: 57784

From what I can tell of your explanation, you are looking for digital signature.

Upvotes: 1

Related Questions