/**
         * basic constructor
         */
        public BasicOcspRespGenerator(
			RespID responderID)
        {
            this.responderID = responderID;
        }
        /**
         * construct with the responderID to be the SHA-1 keyHash of the passed in public key.
         */
        public BasicOcspRespGenerator(
			AsymmetricKeyParameter publicKey)
        {
            this.responderID = new RespID(publicKey);
        }
Beispiel #3
0
 /**
  * basic constructor
  */
 public BasicOcspRespGenerator(
     RespID responderID)
 {
     this.responderID = responderID;
 }