Questions tagged [self-signed]

Self-signed certificates are a type of security certificates that are signed by the same entity that actually uses the certificate.

Self-signed certificates are a type of security certificates that are signed by the same entity that actually uses the certificate. A self-signed certificate is usually signed by an own, custom generated private key. Usually, a public key is also available from the certificating authority - it provides the option for the user or organization to test it against the own private key which is used for signing.

798 questions
-2
votes
1 answer

How to create a self signed certificate for my simple rest service

I have a simple Restful service created using Jersey. @GET @Path("{name}") @Produces(MediaType.TEXT_PLAIN) public String Greetings(@PathParam(value="name") String name) { return "Hello "+name; } Now if I access the…
mani_nz
  • 4,522
  • 3
  • 28
  • 37
-2
votes
2 answers

Are self signed certificates considered invalid?

So we have been asked to use HTTP SSL with our current APP and i am not the most knowledgable about the whole deal, and with some frustration and much...much trial and error we got it connecting the server...However we had to set it so that it…
Genhain
  • 1,937
  • 1
  • 19
  • 38
-2
votes
1 answer

Android - HTTP GET SELF SIGNED

Possible Duplicate: How do I accept a self-signed certificate with a Java HttpsURLConnection? I have set up a HTTP GET. The code is as follows: public class GetMethodEx { public String getInternetData() throws Exception{ …
Lyanor Roze
  • 111
  • 1
  • 1
  • 7
1 2 3
53
54