Home | History | Annotate | Download | only in sip

Lines Matching refs:encryption

26  * ("b="), encryption keys ("k="), and attribute fields ("a="). Currently this
161 * Returns the encryption method or {@code null} if it is not present.
168 * Returns the encryption key or {@code null} if it is not present.
175 * Sets the encryption method and the encryption key. The field will be
426 * Returns the encryption method or {@code null} if it is not present.
429 String encryption = get("k", '=');
430 if (encryption == null) {
433 int colon = encryption.indexOf(':');
434 return (colon == -1) ? encryption : encryption.substring(0, colon);
438 * Returns the encryption key or {@code null} if it is not present.
441 String encryption = get("k", '=');
442 if (encryption == null) {
445 int colon = encryption.indexOf(':');
446 return (colon == -1) ? null : encryption.substring(0, colon + 1);
450 * Sets the encryption method and the encryption key. The field will be