@@ -90,8 +90,6 @@ func (r certAccountRepo) Create(ctx context.Context, req *request.CertAccountCre
9090 client , err = acme .NewRegisterAccount (context .Background (), account .Email , acme .CALetsEncrypt , nil , acme .KeyType (account .KeyType ), r .log )
9191 case "litessl" :
9292 client , err = acme .NewRegisterAccount (context .Background (), account .Email , acme .CALiteSSL , & acme.EAB {KeyID : account .Kid , MACKey : account .HmacEncoded }, acme .KeyType (account .KeyType ), r .log )
93- case "buypass" :
94- client , err = acme .NewRegisterAccount (context .Background (), account .Email , acme .CABuypass , nil , acme .KeyType (account .KeyType ), r .log )
9593 case "zerossl" :
9694 eab , eabErr := r .getZeroSSLEAB (account .Email )
9795 if eabErr != nil {
@@ -154,8 +152,6 @@ func (r certAccountRepo) Update(ctx context.Context, req *request.CertAccountUpd
154152 client , err = acme .NewRegisterAccount (context .Background (), account .Email , acme .CALetsEncrypt , nil , acme .KeyType (account .KeyType ), r .log )
155153 case "litessl" :
156154 client , err = acme .NewRegisterAccount (context .Background (), account .Email , acme .CALiteSSL , & acme.EAB {KeyID : account .Kid , MACKey : account .HmacEncoded }, acme .KeyType (account .KeyType ), r .log )
157- case "buypass" :
158- client , err = acme .NewRegisterAccount (context .Background (), account .Email , acme .CABuypass , nil , acme .KeyType (account .KeyType ), r .log )
159155 case "zerossl" :
160156 eab , eabErr := r .getZeroSSLEAB (account .Email )
161157 if eabErr != nil {
0 commit comments