/aoo41x/main/extensions/qa/integration/extensions/ |
H A D | MethodHandler.java | 136 String signature = new String(); in getPropertyValue() local 137 signature += method.getReturnType().getName(); in getPropertyValue() 138 signature += " "; in getPropertyValue() 139 signature += method.getName(); in getPropertyValue() 141 signature += "("; in getPropertyValue() 146 signature += ( param == 0 ) ? " " : ", "; in getPropertyValue() 147 signature += parameterTypes[param].getName(); in getPropertyValue() 150 signature += " )"; in getPropertyValue() 151 return signature; in getPropertyValue()
|
/aoo41x/main/offapi/com/sun/star/xml/crypto/ |
H A D | XXMLSignature.idl | 41 * Interface of XML signature 45 * <p>The signer or vertifier concrete a key by retrieve signature context and 46 * signature template.</p> 49 * contents to be signed from the signature template by dereference the URI.</p> 52 * the signature template.</p> 57 * Perform signature in the environment of signature template and context. 66 * Perform validation in the environment of signature template and context.
|
H A D | XXMLSignatureTemplate.idl | 41 * Interface of XML signature template 43 * <p>This interface represents a signature template, which is the same as the 44 * desired xml signature element but some of the nodes may be empty. The empty 45 * entities include digest value and signature value. Empty entities are not 46 * allowed in a signature template when performing validation.</p> 51 * <p>With the help of signature context, the signer or verifier specifies the 52 * key from the KeyInfo in the signature template.</p>
|
H A D | XXMLSecurityTemplate.idl | 49 * Load a XML signature template from xml signature element 56 * Get the XML signature element that represents the signature template
|
H A D | XXMLSecurityContext.idl | 37 * <p>This interface specifies a certain signature context. By signature
|
/aoo41x/main/offapi/com/sun/star/security/ |
H A D | DocumentSignatureInformation.idl | 40 …s structure has the information about a digital signature in a document, and the status if the sig… 58 a macro signature validation. 59 As of OpenOffice.org 3.2 and ODF 1.2 the document signature comprises 60 all files except the signature file itself. 64 were not part of the document signature. 67 If PartialDocumentSignature is true, then the signature was created by OOo 69 signature can still be regarded as valid, as long as SignatureIsValid is true
|
H A D | XDocumentDigitalSignatures.idl | 71 /** allows to get the default stream name for storing of the signature of 97 /** allows to get the default stream name for storing of the signature of 121 /** allows to get the default stream name for storing of the signature of
|
/aoo41x/main/solenv/bin/modules/installer/windows/ |
H A D | patch.pm | 102 my $signature = "dir" . $number . "user"; 118 $oneline = $signature . "\t" . $rootvalue . "\t" . $key . "\t" . $name . "\t" . $type . "\n"; 121 $oneline = $property . "\t" . $signature . "\n"; 124 $signature = "dir" . $number . "mach"; 127 $oneline = $signature . "\t" . $rootvalue . "\t" . $key . "\t" . $name . "\t" . $type . "\n"; 130 $oneline = $property . "\t" . $signature . "\n";
|
H A D | java.pm | 87 my $signature = "JavaReg"; 94 my $oneline = $signature . "\t" . $rootvalue . "\t" . $key . "\t" . $name . "\t" . $type . "\n"; 97 $oneline = $property . "\t" . $signature . "\n";
|
/aoo41x/main/libxmlsec/ |
H A D | xmlsec1-noverify.patch | 11 + The goal is to seperate validation of the signature 12 + and the certificate. For example, OOo could show that the document signature is valid, 14 + the certificate by libxmlsec and the verification fails, then the XML signature will no… 39 + The goal is to seperate validation of the signature 40 + and the certificate. For example, OOo could show that the document signature is valid, 42 + the certificate by libxmlsec and the verification fails, then the XML signature may not be
|
H A D | readme.txt | 19 sufficient to validate the signature. See 29 are delivered within the XML signature are not used when looking for suitable
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/ |
H A D | StarFunctionDescription.java | 144 final StringBuffer signature = new StringBuffer(getName()); in getSignature() local 145 signature.append('('); in getSignature() 148 signature.append(functionDescription.getParameterDisplayName(i, defaultLocale)); in getSignature() 151 signature.append(';'); in getSignature() 154 signature.append(')'); in getSignature() 155 return signature.toString(); in getSignature()
|
/aoo41x/main/codemaker/source/javamaker/ |
H A D | classfile.cxx | 489 rtl::OString const & superClass, rtl::OString const & signature): in ClassFile() argument 495 if ( !signature.isEmpty() ) { in ClassFile() 501 appendU2(m_attributes, addUtf8Info(signature)); in ClassFile() 593 rtl::OString const & signature) in addField() argument 608 + (signature.isEmpty() ? 0 : 1))); in addField() 617 appendSignatureAttribute(m_fields, signature); in addField() 624 rtl::OString const & signature) in addMethod() argument 647 + (signature.isEmpty() ? 0 : 1))); in addMethod() 692 appendSignatureAttribute(m_methods, signature); in addMethod() 894 if ( !signature.isEmpty() ) { in appendSignatureAttribute() [all …]
|
H A D | javatype.cxx | 182 if (signature != 0) { in translateUnoTypeToDescriptor() 183 signature->append('['); in translateUnoTypeToDescriptor() 199 if (signature != 0) { in translateUnoTypeToDescriptor() 200 signature->append( in translateUnoTypeToDescriptor() 217 if (signature != 0) { in translateUnoTypeToDescriptor() 218 signature->append('L'); in translateUnoTypeToDescriptor() 233 signature->append(';'); in translateUnoTypeToDescriptor() 310 if (signature != 0) { in translateUnoTypeToDescriptor() 311 signature->append(s); in translateUnoTypeToDescriptor() 359 if (signature != 0) { in getFieldDescriptor() [all …]
|
H A D | classfile.hxx | 180 rtl::OString const & superClass, rtl::OString const & signature); 199 rtl::OString const & signature); 205 rtl::OString const & signature); 239 std::vector< unsigned char > & stream, rtl::OString const & signature);
|
/aoo41x/main/udkapi/com/sun/star/beans/ |
H A D | MethodConcept.idl | 62 <p>These methods have the signature <code>type get...() 71 <p>These methods have the signature <code>add...Listener() 79 <p>These methods have the signature 91 <p>These methods have the signature 106 <p>These methods have the signature
|
/aoo41x/main/offapi/com/sun/star/xml/crypto/sax/ |
H A D | XSignatureCreationResultBroadcaster.idl | 41 * This interface is used to manipulate signature creation result listener. 46 * Adds a new signature creation result listener. 48 * When the signature is created, the result information will be sent to this 58 * Removes a signature creation result listener.
|
H A D | XSignatureVerifyResultBroadcaster.idl | 41 * This interface is used to manipulate signature verify result listener. 46 * Adds a new signature verify result listener. 48 * When the signature is verified, the result information will be sent to this 58 * Removes a signature verify result listener.
|
H A D | XSignatureCreationResultListener.idl | 41 * signature creation. 46 * Notifies the signature creation result. 48 * @param securityId the security id of the signature
|
H A D | XSignatureVerifyResultListener.idl | 41 * signature verification. 46 * Notifies the signature verify result. 48 * @param securityId the security id of the signature
|
H A D | XReferenceCollector.idl | 39 * This interface is used to control collecting a signature. 44 * Sets the reference count of the signature. 46 * @param count the reference count of the signature
|
/aoo41x/main/svx/source/stbctrls/ |
H A D | stbctrls.src | 65 Text [ en-US ] = "Digital Signature: The document signature is OK." ; 70 …Text [ en-US ] = "Digital Signature: The document signature is OK, but the certificates could not … 75 …Text [ en-US ] = "Digital Signature: The document signature does not match the document content. W… 85 …Text [ en-US ] = "Digital Signature: The document signature and the certificate are OK, but not al…
|
/aoo41x/main/nss/ |
H A D | nss_sizes.patch | 40 * decode the ECDSA or DSA signature from it's DER wrapping. 41 * The unwrapped/raw signature is placed in the buffer pointed 53 + /* Safety: Ensure algId is as expected and that signature size is within maxmimums */ 140 + /* Check signature length is within limits */
|
/aoo41x/main/offapi/com/sun/star/script/provider/ |
H A D | ScriptFrameworkErrorType.idl | 46 /** the requested method, and/or with the requested signature, does not exist 50 /** the requested method, with the requested signature, does not exist
|
/aoo41x/main/xmlsecurity/source/dialogs/ |
H A D | digitalsignaturesdialog.src | 74 Text [ en-US ] = "Valid signature" ; 204 …Message [ en-US ] = "Adding or removing a macro signature will remove all document signatures.\nDo…
|