Home
last modified time | relevance | path

Searched defs:Entity (Results 1 – 2 of 2) sorted by relevance

/libcore/tools/go/certutil/
Dcertutil.go31 type Entity struct { struct
32 PrivateKey *ecdsa.PrivateKey
33 Template *x509.Certificate
35 LastSerial *big.Int
80 func (e *Entity) publicKey() *ecdsa.PublicKey {
84 func (e *Entity) name() string {
88 func (e *Entity) nextSerial() *big.Int {
96 func (ca *Entity) doSign(childTemplate *x509.Certificate, pubKey *ecdsa.PublicKey) []byte {
111 func (ca *Entity) Sign(child *Entity) []byte {
115 func (ca *Entity) SignWithAlgorithm(child *Entity, algorithm x509.SignatureAlgorithm) []byte {
[all …]
/libcore/luni/src/main/java/org/w3c/dom/
DEntity.java46 public interface Entity extends Node { interface