...

Package ra

import "github.com/letsencrypt/boulder/test/inmem/ra"
Overview
Index

Overview ▾

type RA

RA meets the `rapb.RegistrationAuthorityClient` interface and acts as a wrapper for an inner `*ra.RegistrationAuthorityImpl` (which in turn meets the `rapb.RegistrationAuthorityServer` interface). Only methods used by unit tests need to be implemented.

type RA struct {
    rapb.RegistrationAuthorityClient
    Impl *ra.RegistrationAuthorityImpl
}

func (RA) AdministrativelyRevokeCertificate

func (ra RA) AdministrativelyRevokeCertificate(ctx context.Context, req *rapb.AdministrativelyRevokeCertificateRequest, _ ...grpc.CallOption) (*emptypb.Empty, error)

AdministrativelyRevokeCertificate is a wrapper for `*ra.RegistrationAuthorityImpl.AdministrativelyRevokeCertificate`.