HomeSort by relevance Sort by last modified time
    Searched refs:ASN (Results 1 - 25 of 26) sorted by null

1 2

  /cts/apps/CameraITS/pymodules/its/
dng.py 136 ASN: The AsShotNeutral value, as a length-3 numpy array.
159 # ASN = CC * CM * XYZCAL
160 ASN = numpy.dot(numpy.dot(CC, CM), XYZCAL)
163 ASN = ASN / max(ASN)
165 return ASN
  /prebuilts/go/darwin-x86/src/crypto/x509/
sec1.go 18 // ecPrivateKey reflects an ASN.1 Elliptic Curve Private Key Structure.
22 // Per RFC5915 the NamedCurveOID is marked as ASN.1 OPTIONAL, however in
31 // ParseECPrivateKey parses an ASN.1 Elliptic Curve Private Key Structure.
36 // MarshalECPrivateKey marshals an EC private key into ASN.1, DER format.
50 // parseECPrivateKey parses an ASN.1 Elliptic Curve Private Key Structure.
pkcs1.go 14 // pkcs1PrivateKey is a structure which mirrors the PKCS#1 ASN.1 for an RSA private key.
38 // ParsePKCS1PrivateKey returns an RSA private key from its ASN.1 PKCS#1 DER encoded form.
86 // MarshalPKCS1PrivateKey converts a private key to ASN.1 DER encoded form.
118 // rsaPublicKey reflects the ASN.1 structure of a PKCS#1 public key.
pkcs8.go 14 // pkcs8 reflects an ASN.1, PKCS#8 PrivateKey. See
15 // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-8/pkcs-8v1_2.asn
x509.go 43 return nil, errors.New("x509: trailing data after ASN.1 of public-key")
108 // These structures reflect the ASN.1 structure of X.509 certificates.:
462 Raw []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
463 RawTBSCertificate []byte // Certificate part of raw ASN.1 DER content.
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
sec1.go 18 // ecPrivateKey reflects an ASN.1 Elliptic Curve Private Key Structure.
22 // Per RFC5915 the NamedCurveOID is marked as ASN.1 OPTIONAL, however in
31 // ParseECPrivateKey parses an ASN.1 Elliptic Curve Private Key Structure.
36 // MarshalECPrivateKey marshals an EC private key into ASN.1, DER format.
50 // parseECPrivateKey parses an ASN.1 Elliptic Curve Private Key Structure.
pkcs1.go 14 // pkcs1PrivateKey is a structure which mirrors the PKCS#1 ASN.1 for an RSA private key.
38 // ParsePKCS1PrivateKey returns an RSA private key from its ASN.1 PKCS#1 DER encoded form.
86 // MarshalPKCS1PrivateKey converts a private key to ASN.1 DER encoded form.
118 // rsaPublicKey reflects the ASN.1 structure of a PKCS#1 public key.
pkcs8.go 14 // pkcs8 reflects an ASN.1, PKCS#8 PrivateKey. See
15 // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-8/pkcs-8v1_2.asn
x509.go 43 return nil, errors.New("x509: trailing data after ASN.1 of public-key")
108 // These structures reflect the ASN.1 structure of X.509 certificates.:
462 Raw []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
463 RawTBSCertificate []byte // Certificate part of raw ASN.1 DER content.
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/pkix/
pkix.go 5 // Package pkix contains shared, low level structures used for ASN.1 parsing
15 // AlgorithmIdentifier represents the ASN.1 structure of the same name. See RFC
26 // AttributeTypeAndValue mirrors the ASN.1 structure of the same name in
33 // AttributeTypeAndValueSET represents a set of ASN.1 sequences of
40 // Extension represents the ASN.1 structure of the same name. See RFC
162 // CertificateList represents the ASN.1 structure of the same name. See RFC
176 // TBSCertificateList represents the ASN.1 structure of the same name. See RFC
189 // RevokedCertificate represents the ASN.1 structure of the same name. See RFC
  /prebuilts/go/linux-x86/src/crypto/x509/pkix/
pkix.go 5 // Package pkix contains shared, low level structures used for ASN.1 parsing
15 // AlgorithmIdentifier represents the ASN.1 structure of the same name. See RFC
26 // AttributeTypeAndValue mirrors the ASN.1 structure of the same name in
33 // AttributeTypeAndValueSET represents a set of ASN.1 sequences of
40 // Extension represents the ASN.1 structure of the same name. See RFC
162 // CertificateList represents the ASN.1 structure of the same name. See RFC
176 // TBSCertificateList represents the ASN.1 structure of the same name. See RFC
189 // RevokedCertificate represents the ASN.1 structure of the same name. See RFC
  /external/llvm/lib/IR/
Attributes.cpp 577 const AttributeSetNode *ASN = getSlotNode(I);
580 for (AttributeSetNode::iterator II = ASN->begin(),
581 IE = ASN->end(); II != IE; ++II) {
590 Mask |= (Log2_32(ASN->getAlignment()) + 1) << 16;
592 Mask |= (Log2_32(ASN->getStackAlignment()) + 1) << 26;
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1.go 5 // Package asn1 implements parsing of DER-encoded ASN.1 data structures,
8 // See also ``A Layman's Guide to a Subset of ASN.1, BER, and DER,''
12 // ASN.1 is a syntax for specifying abstract objects and BER, DER, PER, XER etc
19 // ASN.1 is very complex and this package doesn't attempt to implement
32 // A StructuralError suggests that the ASN.1 data is valid, but the Go type
40 // A SyntaxError suggests that the ASN.1 data is invalid.
129 // BitString is the structure to use when you want an ASN.1 BIT STRING type. A
166 // parseBitString parses an ASN.1 bit string from the given byte slice and returns it.
186 // An ObjectIdentifier represents an ASN.1 OBJECT IDENTIFIER.
335 // parsePrintableString parses a ASN.1 PrintableString from the given byt
    [all...]
common.go 13 // ASN.1 objects have metadata preceding them:
51 // ASN.1 has IMPLICIT and EXPLICIT tags, which can be translated as "instead
55 // For example: a BIT STRING is tagged [UNIVERSAL 3] by default (although ASN.1
marshal.go 633 // Marshal returns the ASN.1 encoding of val.
638 // ia5: causes strings to be marshaled as ASN.1, IA5 strings
640 // printable: causes strings to be marshaled as ASN.1, PrintableString strings.
641 // utf8: causes strings to be marshaled as ASN.1, UTF8 strings
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1.go 5 // Package asn1 implements parsing of DER-encoded ASN.1 data structures,
8 // See also ``A Layman's Guide to a Subset of ASN.1, BER, and DER,''
12 // ASN.1 is a syntax for specifying abstract objects and BER, DER, PER, XER etc
19 // ASN.1 is very complex and this package doesn't attempt to implement
32 // A StructuralError suggests that the ASN.1 data is valid, but the Go type
40 // A SyntaxError suggests that the ASN.1 data is invalid.
129 // BitString is the structure to use when you want an ASN.1 BIT STRING type. A
166 // parseBitString parses an ASN.1 bit string from the given byte slice and returns it.
186 // An ObjectIdentifier represents an ASN.1 OBJECT IDENTIFIER.
335 // parsePrintableString parses a ASN.1 PrintableString from the given byt
    [all...]
common.go 13 // ASN.1 objects have metadata preceding them:
51 // ASN.1 has IMPLICIT and EXPLICIT tags, which can be translated as "instead
55 // For example: a BIT STRING is tagged [UNIVERSAL 3] by default (although ASN.1
marshal.go 633 // Marshal returns the ASN.1 encoding of val.
638 // ia5: causes strings to be marshaled as ASN.1, IA5 strings
640 // printable: causes strings to be marshaled as ASN.1, PrintableString strings.
641 // utf8: causes strings to be marshaled as ASN.1, UTF8 strings
  /prebuilts/go/darwin-x86/src/crypto/
crypto.go 115 // key, it should be a DER-serialised, ASN.1 signature structure.
  /prebuilts/go/linux-x86/src/crypto/
crypto.go 115 // key, it should be a DER-serialised, ASN.1 signature structure.
  /prebuilts/go/darwin-x86/src/encoding/pem/
pem.go 30 Bytes []byte // The decoded bytes of the contents. Typically a DER encoded ASN.1 structure.
  /prebuilts/go/darwin-x86/src/net/http/httptest/
server.go 205 // of ASN.1 time).
  /prebuilts/go/linux-x86/src/encoding/pem/
pem.go 30 Bytes []byte // The decoded bytes of the contents. Typically a DER encoded ASN.1 structure.
  /prebuilts/go/linux-x86/src/net/http/httptest/
server.go 205 // of ASN.1 time).
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp_test.go 715 // of ASN.1 time).

Completed in 465 milliseconds

1 2