Last active
September 25, 2024 16:13
-
-
Save jessepeterson/671b3b7fe2140dda535dbb30166f33c4 to your computer and use it in GitHub Desktop.
smallstep scep dependency example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/jessepeterson/scep-go-kit-dep-example | |
go 1.21.3 | |
require github.com/smallstep/scep v0.0.0-20240925131050-18439bca3e8e | |
require github.com/smallstep/pkcs7 v0.0.0-20231024181729-3b98ecc1ca81 // indirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU= | |
github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= | |
github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= | |
github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= | |
github.com/smallstep/pkcs7 v0.0.0-20231024181729-3b98ecc1ca81 h1:B6cED3iLJTgxpdh4tuqByDjRRKan2EvtnOfHr2zHJVg= | |
github.com/smallstep/pkcs7 v0.0.0-20231024181729-3b98ecc1ca81/go.mod h1:SoUAr/4M46rZ3WaLstHxGhLEgoYIDRqxQEXLOmOEB0Y= | |
github.com/smallstep/scep v0.0.0-20240925131050-18439bca3e8e h1:veP4F67lnHBF8z4I2uXph60LDUfEr3s5ClhZ4K/iLi0= | |
github.com/smallstep/scep v0.0.0-20240925131050-18439bca3e8e/go.mod h1:k21/kfx5MrlE6Zo16yI6WCjxjZi2huLilXRYyBmfNas= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "github.com/smallstep/scep" | |
func main() { | |
_ = &scep.PKIMessage{} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment