New Post: Get Pending Requests with SAN / DNS
Starting with PSPKI v3.0, this process become much easier:$extension= get-ca $ca | Get-DatabaseRow -RowID $RequestID-Table Extension | ?{$_.ExtensionName -eq"2.5.29.17"} if ($extension) { Write-Host...
View ArticleCommented Unassigned: [Feature request] Allow easy retrieval of local CA...
Hello,First, I wanted to say you did a wonderful job with the 3.0 release!Another (very minor) feature request from me... Most of the time (in my case anyway) you execute PSPKI commands from the CA...
View ArticleClosed Unassigned: [Feature request] Allow easy retrieval of local CA...
Hello,First, I wanted to say you did a wonderful job with the 3.0 release!Another (very minor) feature request from me... Most of the time (in my case anyway) you execute PSPKI commands from the CA...
View ArticleNew Post: Get Pending Requests with SAN / DNS
Hi Camelot, I just tried your last example. Any idea why the result would be truncated? I am missing the last caracter of every domain name returned: This is what I get:DNS Name=test.example.co, DNS...
View ArticleCreated Unassigned: ASN.1 -- signed integers are incorrectly encoded and...
ASN.1 -- signed integers are incorrectly encoded and decoded. Reference: http://msdn.microsoft.com/en-us/library/windows/desktop/bb540806(v=vs.85).aspx
View ArticleNew Post: Parsing Certificate Signing Request (CSR)
When parsing CSR with PSPKI, How can i retrieve the "Key Id Hash(sha1): ....."? I can retrive it using 'certutil' tool, however, I am looking if a PSPKI solution exist. Thanks,
View ArticleNew Post: Parsing Certificate Signing Request (CSR)
There is a Subject Key Identifier extension (in the Extensions property) in the request. This extension contains KeyId value.
View ArticleNew Post: Parsing Certificate Signing Request (CSR)
Perfect. Thanks for the quick reply.
View ArticleNew Post: Thank you - Built SHA-1/2 test function using your code
Thank you for the code. I created a tool to help test the SSL signing algorithm of a website in short order using it as a base. Much appreciated. My function is here:...
View ArticleNew Post: Thank you - Built SHA-1/2 test function using your code
You can get rid of C# signature, because it is not necessary for your task.
View ArticleNew Post: Thank you - Built SHA-1/2 test function using your code
Oh, thank you. Didn't quite understand what that part actually did, so I was erring on the side of caution. Updated the gist accordingly.
View ArticleNew Post: Thank you - Built SHA-1/2 test function using your code
This part was used to output the object that contains information about server certificate and main properties. BTW, I looked at your items on GitHub and found one item:...
View ArticleNew Post: Thank you - Built SHA-1/2 test function using your code
I was not aware of that, no. Fantastic. now I don't need to muck about with OpenSSL anymore! Really glad I found your package. Much appreciated. BTW, have you considered using Chocolatey to distribute...
View ArticleNew Post: Thank you - Built SHA-1/2 test function using your code
BTW, have you considered using Chocolatey to distribute your code? Currently, CodePlex is the only valid distribution point for this project and I don't have plans to move somewhere (to GitHub or...
View ArticleCreated Unassigned: [Featire request] Set-CertificateSubject [70]
Hello,I'm not even sure it's technically possible but if it is, I would really like an equivalent of the new Set-certificateExtension but that would be able to change the subject name of a pending...
View ArticleCommented Unassigned: [Featire request] Set-CertificateSubject [70]
Hello,I'm not even sure it's technically possible but if it is, I would really like an equivalent of the new Set-certificateExtension but that would be able to change the subject name of a pending...
View ArticleClosed Unassigned: [Featire request] Set-CertificateSubject [70]
Hello,I'm not even sure it's technically possible but if it is, I would really like an equivalent of the new Set-certificateExtension but that would be able to change the subject name of a pending...
View ArticleNew Post: CR - Carriage Return in RawCertificate
I am attempting to create a script that exports a cert to a .cer file but it seems that "Get-IssuedRequest -Property "RawCertificate" is adding CR after the RawCertificate data. I need help removing...
View ArticleNew Post: CR - Carriage Return in RawCertificate
It seems that 3rd party tools aren't very smart with CR character. You can easily work around this issue by using the following line:$approvedcert.RawCertificate.TrimEnd() | Add-Content...
View ArticleNew Post: CR - Carriage Return in RawCertificate
ASCII encoding the 'TrimEnd' change did the trick! I didn't need to change the encoding when I saved the file but I will remember that if issues like that ever come up again. Thank you so much!
View Article