HomeSort by relevance Sort by last modified time
    Searched defs:PublicKey (Results 1 - 25 of 38) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/security/
PublicKey.java 46 public interface PublicKey extends Key {
  /frameworks/base/core/java/android/hardware/camera2/impl/
PublicKey.java 30 public @interface PublicKey {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256GenerateKeys.py 128 PublicKey = ''
130 PublicKey = PublicKey + chr(int(PublicKeyHexString[Index:Index + 2], 16))
136 Process.stdin.write (PublicKey)
Rsa2048Sha256Sign.py 48 # UINT8 PublicKey[256];
52 EFI_CERT_BLOCK_RSA_2048_SHA256 = collections.namedtuple('EFI_CERT_BLOCK_RSA_2048_SHA256', ['HashType','PublicKey','Signature'])
152 PublicKey = ''
154 PublicKey = PublicKey + chr(int(PublicKeyHexString[0:2],16))
173 args.OutputFile.write(PublicKey)
195 if Header.PublicKey <> PublicKey:
  /device/linaro/bootloader/edk2/SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/
PeiRsa2048Sha256GuidedSectionExtractLib.c 139 UINT8 *PublicKey;
239 CryptoStatus = Sha256Update (HashContext, &CertBlockRsa2048Sha256->PublicKey, sizeof(CertBlockRsa2048Sha256->PublicKey));
253 // Fail if the PublicKey is not one of the public keys in PcdRsa2048Sha256PublicKeyBuffer
255 PublicKey = (UINT8 *)PcdGetPtr (PcdRsa2048Sha256PublicKeyBuffer);
256 DEBUG ((DEBUG_VERBOSE, "PeiPcdRsa2048Sha256: PublicKeyBuffer = %p\n", PublicKey));
257 ASSERT (PublicKey != NULL);
264 if (CompareMem (Digest, PublicKey, SHA256_DIGEST_SIZE) == 0) {
268 PublicKey = PublicKey + SHA256_DIGEST_SIZE;
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/dsa/
dsa.go 22 // PublicKey represents a DSA public key.
23 type PublicKey struct {
30 PublicKey
263 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
  /prebuilts/go/linux-x86/src/crypto/dsa/
dsa.go 22 // PublicKey represents a DSA public key.
23 type PublicKey struct {
30 PublicKey
263 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
WinCertificate.h 66 UINT8 PublicKey[256];
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/
DxeRsa2048Sha256GuidedSectionExtractLib.c 142 UINT8 *PublicKey;
255 CryptoStatus = Sha256Update (HashContext, &CertBlockRsa2048Sha256->PublicKey, sizeof(CertBlockRsa2048Sha256->PublicKey));
269 // Fail if the PublicKey is not one of the public keys in PcdRsa2048Sha256PublicKeyBuffer
271 PublicKey = (UINT8 *)PcdGetPtr (PcdRsa2048Sha256PublicKeyBuffer);
272 DEBUG ((DEBUG_VERBOSE, "DxePcdRsa2048Sha256: PublicKeyBuffer = %p\n", PublicKey));
273 ASSERT (PublicKey != NULL);
280 if (CompareMem (Digest, PublicKey, SHA256_DIGEST_SIZE) == 0) {
284 PublicKey = PublicKey + SHA256_DIGEST_SIZE;
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/ecdsa/
ecdsa.go 46 // PublicKey represents an ECDSA public key.
47 type PublicKey struct {
54 PublicKey
63 func (priv *PrivateKey) Public() crypto.PublicKey {
64 return &priv.PublicKey
107 priv.PublicKey.Curve = c
109 priv.PublicKey.X, priv.PublicKey.Y = c.ScalarBaseMult(k.Bytes())
185 c := priv.PublicKey.Curve
227 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool
    [all...]
  /prebuilts/go/linux-x86/src/crypto/ecdsa/
ecdsa.go 46 // PublicKey represents an ECDSA public key.
47 type PublicKey struct {
54 PublicKey
63 func (priv *PrivateKey) Public() crypto.PublicKey {
64 return &priv.PublicKey
107 priv.PublicKey.Curve = c
109 priv.PublicKey.X, priv.PublicKey.Y = c.ScalarBaseMult(k.Bytes())
185 c := priv.PublicKey.Curve
227 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/
crypto.go 99 // PublicKey represents a public key using an unspecified algorithm.
100 type PublicKey interface{}
110 Public() PublicKey
142 Public() PublicKey
  /prebuilts/go/darwin-x86/src/crypto/rsa/
rsa.go 39 // A PublicKey represents the public part of an RSA key.
40 type PublicKey struct {
66 func checkPub(pub *PublicKey) error {
81 PublicKey // public part.
91 func (priv *PrivateKey) Public() crypto.PublicKey {
92 return &priv.PublicKey
160 if err := checkPub(&priv.PublicKey); err != nil {
346 func encrypt(c *big.Int, pub *PublicKey, m *big.Int) *big.Int {
369 func EncryptOAEP(hash hash.Hash, random io.Reader, pub *PublicKey, msg []byte, label []byte) ([]byte, error) {
566 check := encrypt(new(big.Int), &priv.PublicKey, m
    [all...]
  /prebuilts/go/linux-x86/src/crypto/
crypto.go 99 // PublicKey represents a public key using an unspecified algorithm.
100 type PublicKey interface{}
110 Public() PublicKey
142 Public() PublicKey
  /prebuilts/go/linux-x86/src/crypto/rsa/
rsa.go 39 // A PublicKey represents the public part of an RSA key.
40 type PublicKey struct {
66 func checkPub(pub *PublicKey) error {
81 PublicKey // public part.
91 func (priv *PrivateKey) Public() crypto.PublicKey {
92 return &priv.PublicKey
160 if err := checkPub(&priv.PublicKey); err != nil {
346 func encrypt(c *big.Int, pub *PublicKey, m *big.Int) *big.Int {
369 func EncryptOAEP(hash hash.Hash, random io.Reader, pub *PublicKey, msg []byte, label []byte) ([]byte, error) {
566 check := encrypt(new(big.Int), &priv.PublicKey, m
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiMultiPhase.h 122 UINT8 PublicKey[256];
  /external/syslinux/gpxe/src/include/gpxe/efi/Uefi/
UefiMultiPhase.h 112 UINT8 PublicKey[256];
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Payload.c     [all...]
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cloudtrail/1.11.18/
aws-java-sdk-cloudtrail-1.11.18.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wincrypt.h     [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 617 milliseconds

1 2